:root {
  --primary-cora: #161B3F;
  --accent-cora: #6C7860;
  --bg-cora: #E8E3D0;
  --secondary-cora: #525083;
  --tertiary-cora: #6C7860;
  --text-dark: #333333;
  --text-light: #666666;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-light);
  background-color: var(--bg-cora);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--primary-cora);
  line-height: 1.3;
}

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

.btn-cora {
  display: inline-block; padding: 14px 35px;
  background: linear-gradient(135deg, var(--primary-cora) 0%, var(--secondary-cora) 100%);
  color: white; border: none; border-radius: 50px; font-size: 1.05rem; font-weight: 600;
  cursor: pointer; transition: all 0.3s ease; text-decoration: none;
  box-shadow: 0 5px 20px rgba(22, 27, 63, 0.3); text-align: center;
}
.btn-cora:hover {
  transform: translateY(-3px); box-shadow: 0 10px 30px rgba(22, 27, 63, 0.4);
  background: linear-gradient(135deg, var(--secondary-cora) 0%, var(--primary-cora) 100%);
  color: white;
}

.btn-outline-cora {
  background: transparent; border: 2px solid var(--primary-cora); color: var(--primary-cora);
  box-shadow: none; padding: 14px 35px; border-radius: 50px; font-size: 1.05rem; font-weight: 600;
  transition: all 0.3s ease; text-decoration: none;
}
.btn-outline-cora:hover {
  background: linear-gradient(135deg, var(--primary-cora) 0%, var(--secondary-cora) 100%);
  color: white; transform: translateY(-3px); box-shadow: 0 5px 20px rgba(22, 27, 63, 0.3);
}

header {
  background: rgba(255, 255, 255, 0.95); box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  position: fixed; width: 100%; top: 0; z-index: 1000; padding: 15px 0;
  transition: padding 0.4s ease, box-shadow 0.4s ease;
}

.navbar { display: flex; justify-content: space-between; align-items: center; flex-wrap: nowrap; }

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

.logo-img { height: 70px; width: auto; max-width: 250px; transition: transform 0.3s ease; }
.logo-img:hover { transform: scale(1.05); }

.nav-links { display: none; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-weight: 500; font-size: 17px; transition: all 0.3s ease; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--primary-cora); }
.nav-links a::after {
  content: ''; position: absolute; width: 0; height: 3px; bottom: -5px; left: 0;
  background-color: var(--primary-cora); transition: width 0.3s ease; border-radius: 2px;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-buttons { display: none; }

.hero {
  padding: 180px 0 100px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(245, 241, 238, 0.8) 0%, rgba(232, 202, 184, 0.4) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero h1 { font-size: 3.8rem; margin-bottom: 20px; line-height: 1.1; color: var(--primary-cora); }
.hero h1 span { background: linear-gradient(to right, var(--primary-cora), var(--secondary-cora)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 1.25rem; margin-bottom: 40px; color: var(--text-light); }
.hero-buttons { display: flex; gap: 20px; margin-top: 30px; }

.hero-image-wrapper {
  position: relative; width: 100%; height: 450px; border-radius: 20px; overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15); border: 15px solid white;
  display: flex; align-items: center; justify-content: center;
}
.hero-image { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transition: transform 0.5s ease; }
.hero-image-wrapper:hover .hero-image { transform: scale(1.05); }

.hero-stats { display: flex; gap: 40px; margin-top: 60px; }
.stat-item { display: flex; align-items: center; gap: 15px; }
.stat-icon { width: 60px; height: 60px; background: rgba(22, 27, 63, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--primary-cora); }
.stat-number { font-size: 32px; font-weight: 800; color: var(--primary-cora); line-height: 1; }
.stat-label { font-size: 16px; color: var(--text-light); }

.section { padding: 100px 0; position: relative; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-title { font-size: 2.8rem; margin-bottom: 20px; color: var(--primary-cora); }
.section-title span { background: linear-gradient(to right, var(--primary-cora), var(--secondary-cora)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-subtitle { font-size: 1.25rem; color: var(--text-light); }
.section-subtitle-inverse { font-size: 1.25rem; color: var(--bg-cora); }

.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.about-card {
  background: white; border-radius: 20px; padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); transition: all 0.3s ease; text-align: center;
  border-top: 5px solid var(--accent-cora);
}
.about-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(22, 27, 63, 0.15); }
.about-icon { width: 80px; height: 80px; margin: 0 auto 25px; background: rgba(22, 27, 63, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; color: var(--primary-cora); transition: all 0.3s ease; }
.about-card:hover .about-icon { background: rgba(22, 27, 63, 0.2); transform: scale(1.1); }
.about-title { font-size: 1.5rem; margin-bottom: 15px; color: var(--primary-cora); }
.about-desc { color: var(--text-light); margin-bottom: 20px; }

.services-section {
  background: linear-gradient(135deg, var(--primary-cora), var(--tertiary-cora));
  color: white; padding: 120px 0; position: relative; overflow: hidden;
}
.services-section::before { content: ''; position: absolute; width: 400px; height: 400px; background: rgba(255, 255, 255, 0.05); border-radius: 50%; top: -200px; right: -100px; }
.services-section::after { content: ''; position: absolute; width: 300px; height: 300px; background: rgba(255, 255, 255, 0.05); border-radius: 50%; bottom: -150px; left: -100px; }
.services-section .section-title { color: white; }
.services-section .section-title span { background: linear-gradient(to right, #E8E3D0, #ffffff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.service-item { background: rgba(255, 255, 255, 0.15); border-radius: 15px; padding: 30px; margin-bottom: 25px; text-align: left; transition: all 0.3s ease; }
.service-item:hover { background: rgba(255, 255, 255, 0.25); transform: translateY(-5px); }
.service-item h3 { color: white; margin-bottom: 15px; font-size: 1.8rem; }
.service-item p { color: rgba(255, 255, 255, 0.9); font-size: 1.1rem; }

.trajectory-card { background: white; border-radius: 20px; box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08); padding: 50px; }
.trajectory-profile-img { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; object-position: center 30%; border: 8px solid var(--bg-cora); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }
.trajectory-content p { font-size: 1.1rem; margin-bottom: 20px; }

.abpp-badge {
  display: inline-flex; flex-direction: column; align-items: center;
  padding: 12px 20px; border: 2px solid var(--primary-cora); border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(240,248,255,0.95) 100%);
  text-decoration: none; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.abpp-badge:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); }
.abpp-badge-label { font-family: 'Cormorant', serif; font-size: 1.4rem; font-weight: 700; color: var(--primary-cora); letter-spacing: 1px; }
.abpp-badge-text { font-size: 0.7rem; color: var(--text-light); text-align: center; max-width: 140px; line-height: 1.3; margin-top: 4px; }

@media (max-width: 768px) {
  .trajectory-card { padding: 30px; }
  .trajectory-profile-img { width: 150px; height: 150px; }
}

.aboutme-card { background: white; border-radius: 20px; padding: 50px; box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08); }
.aboutme-card p { font-size: 1.1rem; margin-bottom: 20px; }
.aboutme-card p:last-child { margin-bottom: 0; }

.diferencial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.diferencial-card { background: white; border-radius: 20px; padding: 35px 30px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); transition: all 0.3s ease; border-bottom: 5px solid var(--accent-cora); }
.diferencial-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(22, 27, 63, 0.12); }
.diferencial-icon { width: 65px; height: 65px; margin-bottom: 20px; background: rgba(22, 27, 63, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; color: var(--primary-cora); }
.diferencial-card h4 { font-size: 1.3rem; margin-bottom: 12px; color: var(--primary-cora); }
.diferencial-card p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 0; }

.publico-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 15px; }
.publico-list li { background: white; border-radius: 12px; padding: 18px 22px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); display: flex; align-items: center; gap: 15px; transition: all 0.3s ease; }
.publico-list li:hover { transform: translateX(5px); box-shadow: 0 8px 25px rgba(22, 27, 63, 0.1); }
.publico-list li i { color: var(--accent-cora); font-size: 1.2rem; min-width: 24px; }

.beneficios-list { list-style: none; padding: 0; }
.beneficios-list li { background: white; border-radius: 14px; padding: 20px 25px; margin-bottom: 12px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); display: flex; align-items: flex-start; gap: 18px; transition: all 0.3s ease; }
.beneficios-list li:hover { transform: translateX(8px); box-shadow: 0 8px 25px rgba(22, 27, 63, 0.1); }
.beneficios-list li i { color: var(--accent-cora); font-size: 1.4rem; margin-top: 3px; min-width: 24px; }

.beneficios-section .section-title span { background: linear-gradient(to right, #E8E3D0, #ffffff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.beneficios-list li { background: rgba(255, 255, 255, 0.12); color: rgba(255, 255, 255, 0.95); }
.beneficios-list li i { color: #E8E3D0; }

.processo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.processo-step { background: white; border-radius: 20px; padding: 35px 30px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); text-align: center; transition: all 0.3s ease; position: relative; }
.processo-step:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(22, 27, 63, 0.12); }
.processo-step .step-number { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary-cora), var(--secondary-cora)); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 700; margin: 0 auto 20px; }
.processo-step h4 { font-size: 1.2rem; margin-bottom: 12px; color: var(--primary-cora); }
.processo-step p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 0; }

.processo-footer { background: white; border-radius: 16px; padding: 35px 40px; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06); border-left: 5px solid var(--primary-cora); max-width: 800px; margin: 0 auto; }
.processo-footer p { font-size: 1.1rem; color: var(--text-dark); margin: 0; font-style: italic; }

.blog-section { background-color: #f8fafc; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.blog-card { background: white; border-radius: 20px; padding: 30px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); transition: transform 0.3s ease; }
.blog-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; object-position: center top; border-radius: 15px; margin-bottom: 20px; }
.blog-card h4 { font-size: 1.4rem; margin-bottom: 10px; color: var(--primary-cora); }
.blog-card p { font-size: 0.95rem; color: var(--text-light); }

.contact-section { background-color: var(--bg-cora); }
.contact-form-card { background: white; border-radius: 20px; padding: 45px; box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1); }
.contact-info-block { padding: 25px; }
.contact-info-block h4 { margin-bottom: 30px; font-size: 1.6rem; color: var(--primary-cora); }
.contact-item { margin-bottom: 25px; display: flex; align-items: flex-start; }
.contact-icon { font-size: 1.8rem; color: var(--primary-cora); margin-right: 20px; min-width: 40px; }
.contact-details h5 { font-size: 1.2rem; margin-bottom: 5px; color: var(--primary-cora); }
.contact-details p { margin-bottom: 0; font-size: 1.1rem; color: var(--text-light); }
.map-container iframe { border-radius: 12px; border: none; }

footer { background: var(--primary-cora); color: white; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 60px; }
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-logo .logo-img { height: 40px; max-width: 150px; }
.footer-about { color: rgba(255, 255, 255, 0.8); margin-bottom: 20px; font-size: 0.95rem; }
.social-links { display: flex; gap: 15px; }
.social-link { width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.15); display: flex; align-items: center; justify-content: center; color: white; font-size: 18px; transition: all 0.3s ease; }
.social-link:hover { background: var(--secondary-cora); transform: translateY(-5px); }
.footer-title { font-size: 1.3rem; margin-bottom: 20px; color: white; font-weight: 600; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255, 255, 255, 0.8); text-decoration: none; transition: all 0.3s ease; font-size: 0.95rem; }
.footer-links a:hover { color: white; padding-left: 5px; }
.copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.15); color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; }

.whatsapp-button { position: fixed; bottom: 30px; right: 30px; background-color: #25D366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); z-index: 1000; transition: all 0.3s ease; text-decoration: none; }
.whatsapp-button:hover { transform: scale(1.1); background-color: #1DA851; }

.drawer-icon { display: block; font-size: 28px; color: var(--primary-cora); cursor: pointer; transition: all 0.3s ease; }
.drawer-icon:hover { color: var(--secondary-cora); }
.drawer-menu { position: fixed; top: 0; right: -300px; width: 300px; height: 100%; background: white; box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1); z-index: 1001; transition: right 0.3s ease-in-out; display: flex; flex-direction: column; }
.drawer-menu.active { right: 0; }
.drawer-header { display: flex; justify-content: space-between; align-items: center; padding: 20px; border-bottom: 1px solid #eee; }
.close-drawer-btn { background: none; border: none; font-size: 24px; color: var(--text-dark); cursor: pointer; }
.drawer-content { padding: 20px; display: flex; flex-direction: column; gap: 15px; }
.drawer-link { text-decoration: none; color: var(--text-dark); font-weight: 500; font-size: 18px; padding: 10px 0; transition: color 0.3s ease; }
.drawer-link:hover { color: var(--primary-cora); }
.drawer-buttons { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.drawer-buttons .btn-cora, .drawer-buttons .btn-outline-cora { width: 100%; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeIn 0.8s ease forwards; opacity: 0; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@media (max-width: 1200px) {
  .hero h1 { font-size: 3.2rem; }
  .hero p { font-size: 1.15rem; }
  .hero-image-wrapper { height: 380px; }
}

@media (min-width: 961px) {
  .nav-links { display: flex; }
  .drawer-icon { display: block; }
}

@media (max-width: 992px) {
  .hero { padding: 150px 0 80px; }
  .hero-content { max-width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; }
  .hero-image-wrapper { height: 350px; margin-top: 50px; border: 8px solid white; }
  .hero-stats { justify-content: center; }
  .services-section .service-item { text-align: left; }
}

@media (max-width: 960px) {
  .nav-buttons, .nav-links { display: none !important; }
  .drawer-icon { display: block; }
  .hero h1 { font-size: 2.8rem; }
  .hero p { font-size: 1rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-stats { flex-wrap: wrap; justify-content: center; gap: 20px; }
  .section-title { font-size: 2rem; }
  .section-subtitle { font-size: 1rem; }
  .about-card, .booking-card, .contact-form-card, .blog-card, .about-me-content { padding: 30px 20px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-logo, .social-links, .footer-links { justify-content: center; margin: 0 auto 20px; }
  .footer-logo { margin-bottom: 20px; }
}

@media (max-width: 576px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-image-wrapper { height: 280px; }
  .stat-item { flex-direction: column; text-align: center; }
  .stat-icon { margin-bottom: 5px; }
  .stat-number { font-size: 28px; }
  .stat-label { font-size: 14px; }
  .btn-cora, .btn-outline-cora { padding: 12px 25px; font-size: 0.95rem; }
}
