@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Inter:wght@200;300;400;500;600;700&display=swap');

/* =======================================
   DESIGN SYSTEM
   ======================================= */
:root {
    --primary: #C14F23;
    --secondary: #04073c;
    --dark: #1A1A2E;
    /* Less black, more deep navy */
    --light: #FFFFFF;
    --cream: #FAF9F6;
    --warm-gray: #F8F7F3;
    --text: #1A1A2E;
    --text-muted: #5A5A6E;
    --border: rgba(0, 6, 124, 0.08);
    /* Secondary color border */
    --shadow-sm: 0 4px 20px rgba(0, 0, 50, 0.04);
    --shadow-md: 0 12px 50px rgba(0, 0, 50, 0.07);
    --shadow-lg: 0 30px 90px rgba(0, 0, 50, 0.1);
    --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

/* =======================================
   RESET & BASE
   ======================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    cursor: none;
}

::selection {
    background: var(--primary);
    color: #fff;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 4px;
}

/* =======================================
   TYPOGRAPHY
   ======================================= */
h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.8rem, 6vw, 6rem);
}

h2 {
    font-size: clamp(2.2rem, 4.5vw, 4.5rem);
}

h3 {
    font-size: clamp(1.6rem, 3vw, 2.8rem);
}

h4 {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
}

p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-muted);
}

/* =======================================
   LAYOUT
   ======================================= */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5vw;
    /* Using relative padding for the desired "high class" spacing */
}

section {
    padding: 110px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.text-center {
    text-align: center;
}

/* =======================================
   CUSTOM CURSOR
   ======================================= */
#cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
}

#cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s ease;
    opacity: 0.6;
}

body:hover #cursor-dot,
body:hover #cursor-ring {
    opacity: 1;
}

/* =======================================
   HEADER / NAV
   ======================================= */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    padding: 30px 0;
    transition: all 0.5s var(--ease);
}

#main-header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 1.17rem;
    font-weight: 600;
    color: var(--secondary);
    text-decoration: none;
    letter-spacing: 1px;
    line-height: 1;
}

.nav-logo em {
    color: var(--primary);
    font-style: normal;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.4s var(--ease);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Dropdown Styles */
.nav-item-has-children {
    position: relative;
}

.nav-links .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    background: var(--light);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 20px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s var(--ease);
    z-index: 1000;
}

.nav-item-has-children:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 12px 30px;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
    transition: all 0.3s;
    border-bottom: none;
}

.dropdown li a:hover {
    color: var(--primary);
    padding-left: 35px;
    background: var(--warm-gray);
}

.dropdown li a::after {
    display: none !important;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    /* Smaller padding for better aesthetic balance */
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.4s var(--ease);
    border: 1px solid var(--primary);
}

.nav-cta:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 901;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 1.5px;
    background: var(--text);
    transition: all 0.4s var(--ease);
    transform-origin: left;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--light);
    z-index: 899;
    padding: 120px 50px 50px;
    transition: right 0.5s var(--ease);
    border-left: 1px solid var(--border);
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-nav ul a {
    text-decoration: none;
    color: var(--text);
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    transition: color 0.3s;
}

.mobile-nav ul a:hover {
    color: var(--primary);
}

/* Mobile Dropdown */
.mobile-dropdown {
    list-style: none;
    padding-left: 20px;
    margin-top: 5px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s var(--ease);
    border-left: 1.5px solid var(--border);
}

.mobile-nav li.active>.mobile-dropdown {
    max-height: 600px;
    opacity: 1;
    margin-top: 15px;
    padding-bottom: 5px;
}

.mobile-nav .mobile-dropdown a {
    font-size: 1.3rem !important;
    font-weight: 300;
    opacity: 0.7;
    padding: 8px 0;
}

/* =======================================
   BUTTONS
   ======================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 38px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-decoration: none;
    transition: all 0.4s var(--ease);
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary-outline {
    background: transparent;
    color: var(--secondary);
    border: 1px solid var(--secondary);
}

.btn-secondary-outline:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-3px);
}

.btn-white {
    background: #fff;
    color: var(--primary);
    border: 1px solid #fff;
}

.btn-white:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* =======================================
   LABELS / BADGES
   ======================================= */
.label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--primary);
    margin-bottom: 18px;
}

.label::before {
    content: '—';
    margin-right: 10px;
    opacity: 0.4;
}

/* =======================================
   HERO SECTION
   ======================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, var(--warm-gray) 0%, #EEE9E0 100%);
    z-index: 0;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text .label {
    margin-bottom: 28px;
}

.hero-title {
    color: var(--secondary);
    font-size: clamp(3rem, 6vw, 6.5rem);
    font-weight: 600;
    margin-bottom: 28px;
}

.hero-title em {
    color: var(--primary);
    font-style: italic;
    font-weight: 300;
}

.hero-desc {
    font-size: 1.1rem;
    max-width: 480px;
    margin-bottom: 45px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.hero-stat-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-top: 5px;
    display: block;
}

.hero-image-wrap {
    position: relative;
}

.hero-image-wrap img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero-image-badge {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: var(--primary);
    color: #fff;
    padding: 25px 30px;
    max-width: 220px;
}

.hero-image-badge strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 5px;
}

.hero-image-badge span {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* =======================================
   ABOUT SECTION
   ======================================= */
.about-section {
    background: var(--light);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: -30px;
    bottom: -30px;
    border: 1.5px solid var(--primary);
    z-index: -1;
}

.about-text .label {
    margin-bottom: 20px;
}

.about-text h2 {
    margin-bottom: 25px;
}

.about-highlights {
    list-style: none;
    margin: 30px 0 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 400;
}

.about-highlights li::before {
    content: '✦';
    color: var(--primary);
    font-size: 0.65rem;
    margin-top: 4px;
    flex-shrink: 0;
}

/* =======================================
   SERVICES SECTION
   ======================================= */
.services-section {
    background: var(--cream);
}

.section-header {
    margin-bottom: 70px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    max-width: 600px;
}

.service-card {
    background: var(--light);
    padding: 50px 40px;
    border: 1px solid var(--border);
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.4rem;
    margin-bottom: 25px;
    display: block;
    filter: none;
}

.service-card h3 {
    margin-bottom: 14px;
}

.service-card h3,
.service-card h4 {
    font-size: 1.4rem;
}

.service-card p {
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.service-link {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 14px;
}

/* =======================================
   MENTORIA HIGH-TICKET
   ======================================= */
.mentoria-section {
    background: var(--secondary);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.mentoria-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(193, 79, 35, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.mentoria-section h2 {
    color: #fff;
}

.mentoria-section .label {
    color: var(--primary);
}

.mentoria-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
    list-style: none;
}

.mentoria-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.mentoria-benefits li::before {
    content: '→';
    color: var(--primary);
    flex-shrink: 0;
    font-weight: 700;
}

/* =======================================
   TESTIMONIALS
   ======================================= */
.testimonials-section {
    background: var(--light);
}

.testimonial-card {
    background: var(--cream);
    padding: 45px 40px;
    border-left: 3px solid var(--primary);
    transition: all 0.4s var(--ease);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: #D4A843;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.testimonial-card blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--text);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 25px;
}

.testimonial-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.testimonial-role {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: block;
    margin-top: 3px;
}

/* =======================================
   PROCESS
   ======================================= */
.process-section {
    background: var(--cream);
}

.process-steps {
    counter-reset: step;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 60px;
    background: var(--border);
}

.process-step {
    background: var(--light);
    padding: 50px 35px;
    position: relative;
    transition: all 0.4s var(--ease);
}

.process-step:hover {
    background: var(--secondary);
}

.process-step:hover h4,
.process-step:hover p {
    color: #fff;
}

.process-step:hover .step-number {
    color: rgba(255, 255, 255, 0.2);
}

.step-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--border);
    line-height: 1;
    margin-bottom: -10px;
    transition: color 0.4s;
}

.process-step h4 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.process-step p {
    font-size: 0.85rem;
}

/* =======================================
   COURSES / CURSOS
   ======================================= */
.courses-section {
    background: var(--light);
}

.course-card {
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.5s var(--ease);
}

.course-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.course-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
    display: block;
}

.course-card:hover img {
    transform: scale(1.05);
}

.course-info {
    padding: 35px;
}

.course-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.course-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.course-info p {
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.course-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary);
    display: block;
    margin-bottom: 20px;
}

/* =======================================
   EVENTOS
   ======================================= */
.eventos-section {
    background: var(--cream);
}

.evento-item {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 35px 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.4s var(--ease);
}

.evento-item:first-child {
    border-top: 1px solid var(--border);
}

.evento-item:hover {
    padding-left: 20px;
}

.evento-date {
    text-align: center;
    background: var(--secondary);
    color: #fff;
    padding: 18px 22px;
    min-width: 90px;
    flex-shrink: 0;
}

.evento-date strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.evento-date span {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.8;
}

.evento-info h4 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.evento-info p {
    font-size: 0.85rem;
}

/* =======================================
   FAQ
   ======================================= */
.faq-section {
    background: var(--light);
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0;
}

.faq-toggle {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary);
    transition: all 0.3s var(--ease);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: rotate(45deg);
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s var(--ease), padding 0.3s;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding-bottom: 25px;
    font-size: 0.95rem;
}

/* =======================================
   CONTATO
   ======================================= */
.contato-section {
    background: var(--cream);
}

.contact-form label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border);
    background: var(--light);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    outline: none;
    transition: border-color 0.3s;
    margin-bottom: 24px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
}

.contact-form textarea {
    height: 130px;
    resize: vertical;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-text strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    margin-bottom: 3px;
}

.contact-info-text span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* =======================================
   CTA FINAL BANNER
   ======================================= */
.cta-banner {
    background: linear-gradient(135deg, var(--secondary) 0%, #0A0E60 100%);
    color: #fff;
    text-align: center;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(193, 79, 35, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(193, 79, 35, 0.1) 0%, transparent 50%);
}

.cta-banner .container {
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 4rem);
    margin-bottom: 20px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 45px;
}

/* =======================================
   WHATSAPP FLOAT
   ======================================= */
.wa-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 62px;
    height: 62px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    z-index: 800;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
    text-decoration: none;
    animation: wa-pulse 2.5s infinite;
    transition: transform 0.3s var(--ease);
}

.wa-float:hover {
    transform: scale(1.12) rotate(-10deg);
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* =======================================
   FOOTER
   ======================================= */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 40px;
}

.site-footer p {
    color: #fff !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 70px;
}

.footer-logo {
    font-size: 1.6rem;
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 16px;
}

.footer-logo em {
    color: var(--primary);
    font-style: normal;
}

.footer-about {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.footer-col h5 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #fff;
    margin-bottom: 22px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

/* =======================================
   ANIMATIONS
   ======================================= */
.js-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.js-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =======================================
   RESPONSIVE
   ======================================= */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    section {
        padding: 80px 0;
    }

    .nav-logo-text {
        display: none;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .mentoria-benefits {
        grid-template-columns: 1fr;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero::before {
        display: none;
    }

    .hero-image-wrap {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hero-title {
        font-size: clamp(2.5rem, 9vw, 4rem);
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 24px;
    }

    section {
        padding: 70px 0;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-stats {
        gap: 30px;
        flex-wrap: wrap;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .wa-float {
        bottom: 24px;
        right: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }


    .nav-logo-text {
        font-size: 18px;
    }

    /* MOBILE-SPECIFIC FIXES (Maintaining original desktop design as requested) */
    @media (max-width: 900px) {
        .hero-premium {
            padding: 120px 0 60px !important;
        }

        .hero-premium .hero-inner {
            flex-direction: column-reverse !important;
            text-align: center;
            gap: 50px !important;
        }

        .hero-premium h1 {
            font-size: 2.8rem !important;
            line-height: 1.1;
        }
    }

    @media (max-width: 640px) {

        /* Newsletter Mobile Surgical Fix (Resolves overflow without changing desktop) */
        #newsletter-form {
            flex-direction: column !important;
            gap: 15px !important;
        }

        #newsletter-form input,
        #newsletter-form button {
            width: 100% !important;
            margin: 0 !important;
            box-sizing: border-box !important;
            padding: 18px !important;
            border-radius: 4px !important;
        }

        /* Countdown Mobile 2x2 Grid */
        #countdown-timer {
            flex-wrap: wrap !important;
            gap: 15px 10px !important;
            justify-content: center !important;
        }

        #countdown-timer>div {
            flex: 1 1 calc(50% - 15px);
            min-width: 120px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 15px 5px !important;
        }
    }
}

/* Utility: Visually Hidden for A11y */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}