@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #d40054;
  --secondary: #ffccda;
  --accent: #ffd700;
  --dark: #44001a;
  --light: #FFFFFF;
  --gray: #88002e;
  --background: #ffe6f0;
  --luxury-gold: #C9A96E;
  --deep-burgundy: #2D0A1B;
  --elegant-gray: #6B6B6B;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--background);
  color: var(--dark);
  line-height: 1.6;
  min-height: 100vh;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* Typography Hierarchy */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 800;
}

h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

p, li {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 1.7;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header Styles */
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 60px;
  width: auto;
  margin-right: 10px;
}

nav a {
  margin-left: 2.5rem;
  color: var(--deep-burgundy);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--luxury-gold);
  transition: width 0.3s ease;
}

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

nav a:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .header-content {
    padding: 1rem 1rem;
    justify-content: center;
  }

  .logo {
    justify-content: center;
  }

  .logo img {
    height: 50px;
  }
}

/* Hero Section with Parallax */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(45, 10, 27, 0.92), rgba(212, 0, 84, 0.75));
  backdrop-filter: blur(3px);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: var(--light);
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  background: linear-gradient(45deg, #fff, var(--luxury-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 800px;
  line-height: 1.6;
}

/* Buttons */
.cta-button {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: linear-gradient(45deg, var(--luxury-gold), #E6C179);
  color: var(--deep-burgundy);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(201, 169, 110, 0.4);
  background: linear-gradient(45deg, #E6C179, var(--luxury-gold));
}

/* Features Section */
.features {
  padding: 8rem 0;
  background: var(--light);
}

.features h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--deep-burgundy);
}

.features p {
  text-align: center;
  color: var(--elegant-gray);
  font-size: 1.3rem;
  margin-bottom: 2rem;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.feature-card {
  background: var(--light);
  padding: 3rem 2.5rem;
  border-radius: 25px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  transition: all 0.4s ease;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: var(--luxury-gold);
}

.feature-card h3 {
  color: var(--deep-burgundy);
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  font-weight: 600;
}

.feature-card ul {
  list-style: none;
}

.feature-card li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  color: var(--elegant-gray);
  line-height: 1.6;
  font-weight: 400;
}

.feature-card li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--luxury-gold);
  font-size: 0.8rem;
  top: 2px;
}

/* Implementation Section */
.implementation-section {
  background: linear-gradient(135deg, #f8f6f3, #f0ede8);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.implementation-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.05), rgba(255, 255, 255, 0.1));
  z-index: 1;
}

.implementation-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.implementation-content h2 {
  font-size: 3.2rem;
  margin-bottom: 2rem;
  color: var(--deep-burgundy);
}

.implementation-content p {
  font-size: 1.3rem;
  color: var(--elegant-gray);
  line-height: 1.6;
  margin-bottom: 4rem;
  font-weight: 300;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.timeline-item {
  background: var(--light);
  border: 2px solid rgba(201, 169, 110, 0.2);
  border-radius: 25px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.timeline-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: var(--luxury-gold);
}

.timeline-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--luxury-gold);
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.timeline-title {
  font-size: 1.4rem;
  color: var(--deep-burgundy);
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.timeline-text {
  color: var(--elegant-gray);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 300;
}

.timeline-details {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 169, 110, 0.3);
}

.timeline-details ul {
  list-style: none;
  padding: 0;
}

.timeline-details li {
  color: var(--elegant-gray);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  font-weight: 300;
}

.timeline-details li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--luxury-gold);
  font-size: 0.7rem;
}

/* FAQ Section */
.faq-section {
  padding: 8rem 0;
  background: url('https://images.unsplash.com/photo-1596462502278-27bfdc403348?auto=format&fit=crop&q=80') no-repeat center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(45, 10, 27, 0.95), rgba(68, 0, 26, 0.9));
  z-index: 1;
}

.faq-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--light);
}

.faq-item {
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(201, 169, 110, 0.2);
  background: rgba(255, 255, 255, 0.12);
}

.faq-question {
  padding: 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question h3 {
  color: var(--light);
  margin: 0;
  font-weight: 600;
  font-size: 1.3rem;
}

.faq-question i {
  color: var(--luxury-gold);
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.1);
}

.faq-item.active .faq-question {
  background: rgba(255, 255, 255, 0.15);
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.05);
}

.faq-item.active .faq-answer {
  padding: 2rem;
  max-height: 500px;
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
  font-weight: 300;
}

/* Social Proof Section */
.social-proof {
  text-align: center;
  padding: 8rem 0;
  background: var(--light);
  position: relative;
  overflow: hidden;
}

.social-proof h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--deep-burgundy);
}

.social-proof p {
  color: var(--elegant-gray);
  font-size: 1.3rem;
  margin-bottom: 4rem;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-box {
  background: var(--light);
  border: 2px solid rgba(201, 169, 110, 0.2);
  border-radius: 25px;
  padding: 3rem 2rem;
  transition: all 0.4s ease;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stat-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: var(--luxury-gold);
}

.stat-box h3 {
  position: relative;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--luxury-gold);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
}

.stat-box.visible h3 {
  opacity: 1;
  transform: translateY(0);
}

.counting {
  transition: all 0.5s ease;
}

.stat-box p {
  color: var(--elegant-gray);
  font-size: 1.1rem;
  margin: 0;
  font-weight: 400;
  line-height: 1.4;
}

/* Contact Section */
.contact-section {
  padding: 10rem 0 6rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.08), rgba(255, 255, 255, 0.95));
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-left {
  position: sticky;
  top: 8rem;
}

.contact-header {
  text-align: left;
  margin-bottom: 4rem;
}

.contact-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, var(--deep-burgundy), var(--luxury-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  line-height: 1.1;
}

.contact-header p {
  color: var(--elegant-gray);
  font-size: 1.3rem;
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.6;
}

.contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.benefit-item {
  background: var(--light);
  padding: 2.5rem;
  border-radius: 20px;
  border: 2px solid rgba(201, 169, 110, 0.2);
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: var(--luxury-gold);
}

.benefit-item h3 {
  color: var(--deep-burgundy);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.benefit-item p {
  color: var(--elegant-gray);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
}

.contact-form {
  background: var(--light);
  padding: 3rem;
  border-radius: 25px;
  border: 2px solid rgba(201, 169, 110, 0.2);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--deep-burgundy);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(248, 246, 243, 0.8);
  border: 2px solid rgba(201, 169, 110, 0.2);
  border-radius: 12px;
  color: var(--deep-burgundy);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--luxury-gold);
  background: var(--light);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.form-group input::placeholder {
  color: var(--elegant-gray);
  font-weight: 300;
}

.submit-button {
  width: 100%;
  padding: 1.3rem;
  background: linear-gradient(45deg, var(--luxury-gold), #E6C179);
  color: var(--deep-burgundy);
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(201, 169, 110, 0.4);
  background: linear-gradient(45deg, #E6C179, var(--luxury-gold));
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
  position: relative;
  padding-bottom: 1.5rem;
}

.char-counter {
  position: relative;
  text-align: right;
  color: var(--elegant-gray);
  font-size: 0.85rem;
  margin-top: 0.8rem;
  font-weight: 300;
}

.required {
  color: var(--primary);
  margin-left: 4px;
}

/* Footer */
footer {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--light);
  border-top: 2px solid rgba(201, 169, 110, 0.2);
  color: var(--elegant-gray);
}

.social-links {
  margin: 1.5rem 0;
}

.social-links a {
  color: var(--luxury-gold);
  font-size: 1.8rem;
  margin: 0 1.5rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--deep-burgundy);
  transform: translateY(-2px);
}

.footer-address {
  margin: 20px 0;
  color: var(--elegant-gray);
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 300;
}

.footer-address i {
  color: var(--luxury-gold);
  margin-right: 8px;
}

.powered-by {
  margin-top: 15px;
  font-size: 0.9rem;
  text-align: center;
  font-weight: 300;
}

.powered-by a {
  color: var(--luxury-gold);
  text-decoration: none;
  font-weight: 500;
}

/* Animations */
@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(100px, 100px) rotate(90deg);
  }
  50% {
    transform: translate(0, 200px) rotate(180deg);
  }
  75% {
    transform: translate(-100px, 100px) rotate(270deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  h1 {
    font-size: 3.2rem;
  }
  
  h2 {
    font-size: 2.4rem;
  }
  
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-left {
    position: static;
  }

  .contact-header {
    text-align: center;
  }

  .contact-header h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }

  nav {
    display: none;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stat-box {
    padding: 2rem 1.5rem;
  }

  .stat-box h3 {
    font-size: 3rem;
  }

  .contact-section {
    padding: 8rem 0 3rem;
  }

  .contact-header h1 {
    font-size: 2.2rem;
  }

  .contact-form {
    padding: 2rem;
  }

  .benefit-item {
    padding: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    padding: 2.5rem 2rem;
  }
}

/* Client Logos Section */
.client-logos {
  padding: 6rem 0;
  background: url('https://images.unsplash.com/photo-1596462502278-27bfdc403348?auto=format&fit=crop&q=80') no-repeat center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.client-logos::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(45, 10, 27, 0.95), rgba(68, 0, 26, 0.9));
  z-index: 1;
}

.client-logos .container {
  position: relative;
  z-index: 2;
}

.client-logos h2 {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 3rem;
  color: var(--light);
}

.logo-carousel {
  display: flex;
  gap: 2.5rem;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding: 1.5rem 0;
  margin: 0 -1rem;
  position: relative;
}

.logo-slide {
  min-width: 320px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(201, 169, 110, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo-slide:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 15px 40px rgba(201, 169, 110, 0.2);
  border-color: var(--luxury-gold);
}

.logo-slide img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 2rem;
}

.client-info h3 {
  color: var(--light);
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.client-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 300;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.carousel-controls button {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(201, 169, 110, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--light);
}

.carousel-controls button:hover {
  background: var(--luxury-gold);
  color: var(--deep-burgundy);
  border-color: var(--luxury-gold);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .logo-slide {
    min-width: 280px;
  }
  
  .client-logos h2 {
    font-size: 2.4rem;
  }
}

/* CTA Section */
#contato {
  background: linear-gradient(135deg, #2D0A1B, #44001a);
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
  color: var(--light);
}

#contato::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1607008829749-c0f284a49459?auto=format&fit=crop&q=80') no-repeat center center;
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

#contato .container {
  position: relative;
  z-index: 1;
}

#contato h2 {
  color: var(--light);
  margin-bottom: 1.5rem;
  font-size: 3.2rem;
}

#contato p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  font-size: 1.3rem;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

#contato .cta-button {
  background: var(--luxury-gold);
  color: var(--deep-burgundy);
  border: 2px solid var(--luxury-gold);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1.3rem 3.5rem;
  box-shadow: 0 10px 30px rgba(201, 169, 110, 0.4);
}

#contato .cta-button:hover {
  background: transparent;
  color: var(--luxury-gold);
  box-shadow: 0 10px 40px rgba(201, 169, 110, 0.6);
}

/* AI SDR Section */
.ai-sdr-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--deep-burgundy), #44001a);
  position: relative;
  overflow: hidden;
}

.ai-sdr-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('fundo2.jpg');
  background-size: cover;
  opacity: 0.06;
  z-index: 1;
}

.ai-sdr-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.ai-sdr-header h2 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  color: var(--light);
}

.ai-sdr-header p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.6;
}

.ai-sdr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  position: relative;
  z-index: 2;
}

/* iPhone Mockup */
.phone-mockup {
  background: #111;
  width: 300px;
  height: 600px;
  border-radius: 40px;
  padding: 12px;
  margin: 0 auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
  border: 8px solid #222;
  display: flex;
  flex-direction: column;
}

.phone-notch {
  width: 150px;
  height: 25px;
  background: #111;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  z-index: 10;
}

.phone-header {
  height: 50px;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #075E54;
  color: white;
  font-size: 12px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.contact-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--luxury-gold), #E6C179);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--deep-burgundy);
}

.contact-name {
  font-size: 14px;
  font-weight: bold;
}

.phone-options {
  display: flex;
  gap: 15px;
}

.phone-screen {
  background: #E4DDD6;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(0,0,0,.03)' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.chat-bubble {
  max-width: 80%;
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 8px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
}

.chat-bubble.received {
  background: #FFFFFF;
  color: #303030;
  align-self: flex-start;
  border-top-left-radius: 0;
  animation: fadeInMessage 0.3s forwards;
  animation-delay: var(--delay, 0s);
}

.chat-bubble.sent {
  background: #DCF8C6;
  color: #303030;
  align-self: flex-end;
  border-top-right-radius: 0;
  animation: fadeInMessage 0.3s forwards;
  animation-delay: var(--delay, 0s);
}

.chat-bubble p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.chat-bubble .time {
  font-size: 10px;
  color: #888;
  text-align: right;
  margin-top: 3px;
}

.chat-indicator {
  display: flex;
  gap: 4px;
  align-self: flex-start;
  margin-top: 5px;
  padding: 8px 12px;
  background: #FFFFFF;
  border-radius: 10px;
  opacity: 0;
  animation: fadeInMessage 0.3s forwards;
  animation-delay: 6s;
}

.chat-indicator span {
  width: 8px;
  height: 8px;
  background: #999;
  border-radius: 50%;
  opacity: 0.7;
  animation: blink 1.4s infinite both;
}

.chat-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.chat-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

.phone-input {
  height: 45px;
  margin-top: 10px;
  background: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  justify-content: space-between;
}

.phone-input .emoji {
  color: #888;
  font-size: 16px;
}

.phone-input .input-text {
  flex-grow: 1;
  padding: 0 10px;
  color: #555;
  font-size: 14px;
}

.phone-input .mic {
  width: 30px;
  height: 30px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes blink {
  0%, 100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes fadeInMessage {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .phone-mockup {
    width: 280px;
    height: 550px;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float-wrapper.vertical {
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.whatsapp-tooltip {
  margin-left: 0;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 700;
  background: var(--luxury-gold);
  color: var(--deep-burgundy);
  box-shadow: 0 5px 20px rgba(201, 169, 110, 0.3);
  letter-spacing: 0.5px;
}

.whatsapp-float {
  background: #25d366;
  color: white;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  animation: pulse 2.5s infinite;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  animation: none;
}

@media (max-width: 500px) {
  .whatsapp-tooltip {
    font-size: 1rem;
    padding: 0.6rem 1rem;
    max-width: 150px;
    text-align: center;
  }
  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 1.8rem;
  }
}

/* AI SDR Benefits Cards */
.ai-sdr-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(201, 169, 110, 0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-color: var(--luxury-gold);
}

.benefit-card i {
  font-size: 2.2rem;
  color: var(--luxury-gold);
  margin-bottom: 1.5rem;
}

.benefit-card h3 {
  font-size: 1.2rem;
  color: var(--light);
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.benefit-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-weight: 300;
}

@media (max-width: 1024px) {
  .ai-sdr-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .ai-sdr-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ai-sdr-benefits {
    grid-template-columns: 1fr;
  }
  
  .ai-sdr-header h2 {
    font-size: 2.4rem;
  }
}

.whatsapp-float-wrapper {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

/* Marketing Strategy Section */
.marketing-strategy-section {
  padding: 8rem 0;
  background: linear-gradient(to right, #faf9f7, #f5f3f0);
  position: relative;
  overflow: hidden;
}

.marketing-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.marketing-header h2 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  color: var(--deep-burgundy);
  position: relative;
  display: inline-block;
}

.marketing-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--luxury-gold);
  border-radius: 2px;
}

.marketing-header p {
  font-size: 1.3rem;
  color: var(--elegant-gray);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.6;
}

.marketing-grid {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.marketing-content {
  display: flex;
  flex-direction: column;
  max-width: 1100px;
  width: 100%;
}

.marketing-content h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--deep-burgundy);
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.marketing-content > p {
  font-size: 1.2rem;
  color: var(--elegant-gray);
  margin-bottom: 3rem;
  line-height: 1.7;
  text-align: center;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.strategy-points-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.strategy-point {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border-top: 4px solid var(--luxury-gold);
  transition: all 0.4s ease;
  height: 100%;
}

.strategy-point:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  border-top-color: var(--deep-burgundy);
}

.strategy-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--luxury-gold), #E6C179);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--deep-burgundy);
  font-size: 2rem;
  align-self: center;
  box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
}

.strategy-text h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--deep-burgundy);
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.strategy-text p {
  font-size: 1rem;
  color: var(--elegant-gray);
  line-height: 1.6;
  text-align: center;
  font-weight: 300;
}

.strategy-cta {
  align-self: center;
  margin-top: 2rem;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 30px;
  background: linear-gradient(45deg, var(--luxury-gold), #E6C179);
  color: var(--deep-burgundy);
  box-shadow: 0 10px 25px rgba(201, 169, 110, 0.3);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.strategy-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(201, 169, 110, 0.4);
  background: linear-gradient(45deg, #E6C179, var(--luxury-gold));
}

@media (max-width: 1024px) {
  .marketing-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .strategy-image .main-image {
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .marketing-header h2 {
    font-size: 2.4rem;
  }
  
  .strategy-points-grid {
    grid-template-columns: 1fr;
  }
  
  .strategy-point {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 4px solid var(--luxury-gold);
  }
  
  .strategy-icon {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 1024px) {
  .marketing-content h3 {
    font-size: 1.8rem;
  }
  
  .marketing-content > p {
    font-size: 1.1rem;
  }
  
  .strategy-text h4 {
    font-size: 1.3rem;
  }
  
  .strategy-text p {
    font-size: 0.98rem;
  }
}

@media (max-width: 768px) {
  .strategy-points-grid {
    grid-template-columns: 1fr;
  }
  
  .marketing-header h2 {
    font-size: 2.4rem;
  }
} 