/* Estilos para o site da Ivyrá */

:root {
  /* Cores principais baseadas no logotipo */
  --primary-color: #FF6B00; /* Laranja do logotipo */
  --secondary-color: #333333; /* Cinza escuro do logotipo */
  
  /* Cores complementares inspiradas na Highradius */
  --accent-color-1: #00A67E; /* Verde */
  --accent-color-2: #0078D4; /* Azul */
  --light-bg: #F8F9FA;
  --white: #FFFFFF;
  --dark-text: #222222;
  --light-text: #666666;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', 'Segoe UI', sans-serif;
}

body {
  background-color: var(--white);
  color: var(--dark-text);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  height: 50px;
}

.logo img {
  height: 100%;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  text-decoration: none;
  color: var(--secondary-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: var(--primary-color);
}

.cta-button {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #E05A00;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #555555 100%);
  color: var(--white);
  padding: 150px 0 100px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero h2 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: 400;
}

.hero-stat {
  background-color: var(--primary-color);
  display: inline-block;
  padding: 15px 30px;
  border-radius: 10px;
  margin: 30px 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.hero-buttons {
  margin-top: 40px;
}

.hero-buttons .cta-button {
  margin: 0 10px;
  padding: 15px 30px;
  font-size: 1.1rem;
}

.hero-buttons .secondary-button {
  background-color: transparent;
  border: 2px solid var(--white);
}

.hero-buttons .secondary-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Seções */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.section-title p {
  font-size: 1.2rem;
  color: var(--light-text);
  max-width: 700px;
  margin: 0 auto;
}

/* Seção de Benefícios */
.benefits {
  background-color: var(--light-bg);
}

.benefits-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.benefit-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.benefit-icon i {
  color: var(--white);
  font-size: 30px;
}

.benefit-card h3 {
  margin-bottom: 15px;
  color: var(--secondary-color);
}

/* Seção Por que escolher */
.why-choose-us {
  background-color: var(--white);
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.feature {
  flex: 1;
  min-width: 300px;
}

.feature-content {
  display: flex;
  align-items: flex-start;
}

.feature-icon {
  background-color: var(--accent-color-1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.feature-icon i {
  color: var(--white);
  font-size: 20px;
}

.feature-text h3 {
  margin-bottom: 10px;
  color: var(--secondary-color);
}

/* Seção de Integrações */
.integrations {
  background-color: var(--light-bg);
  text-align: center;
}

.integration-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.integration-logo {
  height: 60px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.integration-logo:hover {
  opacity: 1;
}

/* Seção CTA */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #FF9A4D 100%);
  color: var(--white);
  text-align: center;
  padding: 100px 0;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .cta-button {
  background-color: var(--white);
  color: var(--primary-color);
  padding: 15px 30px;
  font-size: 1.1rem;
}

.cta-section .cta-button:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* Formulário de Contato */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-submit {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-submit:hover {
  background-color: #E05A00;
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo {
  flex: 1;
  min-width: 200px;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 20px;
}

.footer-links {
  flex: 1;
  min-width: 150px;
}

.footer-links h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--primary-color);
}

.footer-contact {
  flex: 1;
  min-width: 200px;
}

.footer-contact h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.contact-info {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.contact-info i {
  margin-right: 10px;
  color: var(--primary-color);
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
  }
  
  nav ul {
    margin-top: 20px;
  }
  
  nav ul li {
    margin: 0 10px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero h2 {
    font-size: 1.2rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .benefit-card {
    min-width: 100%;
  }
  
  .feature {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  nav ul li {
    margin: 10px 0;
  }
  
  .hero-buttons .cta-button {
    display: block;
    margin: 10px auto;
    width: 80%;
  }
}

/* Estilos específicos para a página Quem Somos */
.founder-card {
  max-width: 450px;
  text-align: left;
  padding: 40px;
}

.founder-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  overflow: hidden;
}

.founder-image i {
  color: var(--white);
  font-size: 50px;
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.founder-card h3 {
  font-size: 1.8rem;
  margin-bottom: 5px;
  color: var(--secondary-color);
}

.founder-card h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-weight: 500;
}

.founder-card p {
  margin-bottom: 15px;
  text-align: left;
}
