/* Reset & Variables */
:root {
    --brand-dark: #263238;
    --brand-grey: #546E7A;
    --brand-green: #8CC63F;
    --brand-blue: #00AEEF;
    --bg-light: #F8F9FA;
    --text-white: #FFFFFF;

    --font-main: 'Plus Jakarta Sans', sans-serif;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);

    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--brand-dark);
    background-color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-blue {
    color: var(--brand-blue);
}

.text-green {
    color: var(--brand-green);
}

.hidden {
    display: none !important;
}

.icon-sm {
    width: 18px;
    height: 18px;
}

/* ==============================
   HERO — Specialty Badge & Trust
   ============================== */
.hero-specialty-badge {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem;
    margin-bottom: 1.5rem;
}

.specialty-pill {
    background: rgba(0, 174, 239, 0.08);
    border: 1px solid rgba(0, 174, 239, 0.25);
    color: var(--brand-blue);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
}

.specialty-sep {
    color: #CBD5E1;
    font-size: 0.8rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0,0,0,0.03);
    border-radius: 9999px;
    border: 1px solid #E5E7EB;
}

.trust-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 0.25rem;
}

.trust-item {
    font-size: 0.82rem;
    font-weight: 600;
    color: #374151;
}

.trust-sep {
    color: #D1D5DB;
    font-size: 0.75rem;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--brand-dark);
    letter-spacing: -1px;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 150px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--brand-dark);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--brand-green);
}

/* Special CTA Button with Gradient Border */
.btn-cta {
    position: relative;
    padding: 0.6rem 1.5rem;
    border-radius: 9999px;
    color: white !important;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.btn-cta .btn-bg {
    position: absolute;
    inset: 0;
    background: var(--brand-green);
    z-index: 1;
    border-radius: 9999px;
    transition: margin 0.3s ease;
}

.btn-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    padding: 2px;
    /* Border width */
    background: linear-gradient(to right, var(--brand-blue), var(--brand-green));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(140, 198, 63, 0.4);
}

.btn-cta:hover .btn-bg {
    margin: 2px;
    /* Reveals gradient behind */
}

.btn-cta:hover::before {
    opacity: 1;
    /* Not strictly needed with the margin trick, but adds vividness */
}

.btn-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--brand-green);
}

/* Mobile Menu */
#mobile-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--brand-dark);
}

#mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    gap: 1rem;
}

#mobile-menu.active {
    display: flex;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 5rem;
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%239C92AC' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    overflow: hidden;
}

/* ==============================
   HERO h1 — Stronger typography
   ============================== */
.hero h1 {
    font-size: clamp(2rem, 4.2vw, 3.6rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    min-height: 2.7em;
    text-align: center;
}

.hero-title-main {
    display: block;
    color: var(--brand-dark);
}

.hero-desc {
    max-width: 680px;
    font-size: 1.15rem;
    color: var(--brand-grey);
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

.hero-desc strong {
    color: var(--brand-dark);
    font-weight: 700;
}

.typing-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    vertical-align: middle;
    max-width: 100%;
    line-height: 1.35;
    padding: 0.1em 0;
    overflow: visible;
}

.typing-text {
    background: linear-gradient(to right, var(--brand-blue), var(--brand-green));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-bottom: 0.12em;
    padding-top: 0.05em;
    vertical-align: middle;
    line-height: 1.35;
}

.cursor {
    animation: blink 1s step-start infinite;
    color: var(--brand-green);
    font-weight: 300;
    display: inline-block;
    margin-left: 2px;
    vertical-align: middle;
    line-height: 1;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    /* Similar style to .btn-cta but larger */
    position: relative;
    padding: 1rem 2rem;
    border-radius: 9999px;
    color: white !important;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-green);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 10px 25px rgba(140, 198, 63, 0.4);
}

/* Reusing internal structure logic for gradient border via JS or simple CSS hover change */
.btn-primary .btn-content {
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.1rem;
    background: white;
    border: 2px solid #E5E7EB;
    color: var(--brand-dark) !important;
    text-decoration: none;
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--brand-blue);
    color: var(--brand-blue) !important;
    box-shadow: var(--shadow-md);
}

/* Blur Blobs */
.blur-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: -1;
}

.blob-top {
    top: 0;
    right: 0;
    background: var(--brand-blue);
    transform: translate(30%, -30%);
}

.blob-bottom {
    bottom: 0;
    left: 0;
    background: var(--brand-green);
    transform: translate(-30%, 30%);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    animation: bounce 2s infinite;
    color: #9CA3AF;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Sections General */
.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--brand-grey);
}

/* ==============================
   PARTNERS / QUEM SOMOS
   ============================== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    align-items: stretch;
}

.partner-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 1.75rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.04);
}

.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.08);
}

/* Retratos Imponentes dos Sócios (Sem Cortes nem Zoom Desproporcional) */
.partner-portrait-wrapper {
    width: 100%;
    max-width: 260px;
    height: 350px;
    border-radius: 1.5rem;
    overflow: hidden;
    margin: 0 auto 1.5rem auto;
    position: relative;
    z-index: 2;
    border: 3px solid #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background: #F8FAFC;
}

.partner-portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.reryson-portrait {
    object-position: center 10%;
}

.sharllenny-portrait {
    object-position: center 10%;
}

.partner-card:hover .partner-portrait-img {
    transform: scale(1.04);
}

.partner-card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.partner-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.partner-header .icon-box {
    width: 50px;
    height: 50px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 0;
}

.green-theme {
    border-top: 4px solid var(--brand-green);
}

.green-theme:hover {
    border-color: var(--brand-green);
}

.blue-theme {
    border-top: 4px solid var(--brand-blue);
}

.blue-theme:hover {
    border-color: var(--brand-blue);
}

.card-bg-icon {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.04;
    padding: 1.5rem;
    pointer-events: none;
}

.card-bg-icon svg {
    width: 130px;
    height: 130px;
}

.green-theme .icon-box {
    background: rgba(140, 198, 63, 0.12);
    color: var(--brand-green);
}

.blue-theme .icon-box {
    background: rgba(0, 174, 239, 0.12);
    color: var(--brand-blue);
}

.partner-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.2rem;
    position: relative;
    z-index: 2;
    color: var(--brand-dark);
}

.partner-card .role {
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
    display: block;
    position: relative;
    z-index: 2;
}

.green-theme .role {
    color: #5a8a1a;
}

.blue-theme .role {
    color: #0076a3;
}

.partner-card p {
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.25rem;
}

.partner-inline-link {
    color: #5a8a1a;
    text-decoration: none;
    border-bottom: 1px dashed rgba(140, 198, 63, 0.6);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.partner-inline-link:hover {
    color: var(--brand-green);
    border-bottom-style: solid;
}

.partner-inline-link .link-icon {
    width: 14px;
    height: 14px;
}

/* Feature List */
.feature-list {
    list-style: none;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: #334155;
}

.feature-list li svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

.green-theme .feature-list svg {
    color: var(--brand-green);
}

.partner-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 2;
}

.partner-top-row .icon-box {
    margin-bottom: 0;
}

.partner-avatar-box {
    width: 72px;
    height: 72px;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 2.5px solid #F1F5F9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.green-theme .partner-avatar-box {
    border-color: rgba(140, 198, 63, 0.35);
}

.blue-theme .partner-avatar-box {
    border-color: rgba(0, 174, 239, 0.35);
}

.partner-card:hover .partner-avatar-box {
    transform: scale(1.06);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.partner-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Credentials */
.partner-credentials {
    margin-top: 1.25rem;
    position: relative;
    z-index: 2;
    border-top: 1px solid #E2E8F0;
    padding-top: 1.25rem;
}

.cred-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94A3B8;
    margin-bottom: 0.75rem;
}

.cred-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cred-pill {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.35rem 0.8rem;
    border-radius: 9999px;
    border: 1px solid;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;
    transition: var(--transition);
}

.cred-pill.green {
    background: rgba(140, 198, 63, 0.08);
    border-color: rgba(140, 198, 63, 0.3);
    color: #5a8a1a;
}

.cred-pill.blue {
    background: rgba(0, 174, 239, 0.08);
    border-color: rgba(0, 174, 239, 0.3);
    color: #0076a3;
}

.aura-pill:hover {
    background: var(--brand-green);
    color: white;
    border-color: var(--brand-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(140, 198, 63, 0.3);
}

.pill-icon {
    width: 13px;
    height: 13px;
}

.award-pill {
    background: rgba(251, 191, 36, 0.12) !important;
    border-color: rgba(251, 191, 36, 0.4) !important;
    color: #92610a !important;
}
    color: var(--brand-blue);
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #334155;
}

.feature-list li svg {
    width: 18px;
    height: 18px;
}

.green-theme .feature-list svg {
    color: var(--brand-green);
}

.blue-theme .feature-list svg {
    color: var(--brand-blue);
}

/* ==============================
   SERVICES — Dual Track Layout
   ============================== */
.services-tracks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.service-track {
    background: white;
    border-radius: 1.5rem;
    border: 1px solid #E2E8F0;
    overflow: hidden;
    transition: var(--transition);
}

.service-track:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.track-header {
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border-bottom: 1px solid #F1F5F9;
}

.track-header.blue-track {
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.06), rgba(0, 174, 239, 0.02));
}

.track-header.green-track {
    background: linear-gradient(135deg, rgba(140, 198, 63, 0.06), rgba(140, 198, 63, 0.02));
}

.track-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #94A3B8;
    margin-bottom: 0.25rem;
}

.track-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0;
}

.track-header .icon-box {
    margin-bottom: 0;
    flex-shrink: 0;
}

.blue-track .icon-box {
    background: rgba(0, 174, 239, 0.1);
    color: var(--brand-blue);
}

.green-track .icon-box {
    background: rgba(140, 198, 63, 0.1);
    color: var(--brand-green);
}

.track-cards {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.track-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 0.75rem;
    background: #F8FAFC;
    transition: var(--transition);
    border: 1px solid transparent;
}

.track-card:hover {
    background: white;
    border-color: #E2E8F0;
    box-shadow: var(--shadow-sm);
}

.track-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}

.track-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 0;
    flex: 1;
}

.service-chip {
    flex-shrink: 0;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 0.15rem 0.55rem;
    border-radius: 9999px;
    border: 1px solid;
    margin-top: 2px;
    white-space: nowrap;
}

.service-chip.blue {
    background: rgba(0, 174, 239, 0.08);
    border-color: rgba(0, 174, 239, 0.25);
    color: #0076a3;
}

.service-chip.green {
    background: rgba(140, 198, 63, 0.08);
    border-color: rgba(140, 198, 63, 0.25);
    color: #5a8a1a;
}

.track-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.track-card-icon.blue-icon {
    background: rgba(0, 174, 239, 0.1);
    color: var(--brand-blue);
}

.track-card-icon.green-icon {
    background: rgba(140, 198, 63, 0.1);
    color: var(--brand-green);
}

.track-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 0.3rem;
}

.track-card p {
    font-size: 0.85rem;
    color: var(--brand-grey);
    line-height: 1.6;
    margin: 0;
}

/* Clients */
.bg-light {
    background-color: var(--bg-light);
}

.clients-title {
    text-align: center;
    font-size: 1rem;
    color: #94A3B8;
    letter-spacing: 2px;
    margin-bottom: 3rem;
}

.clients-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.25rem 3.5rem;
    margin-bottom: 4rem;
    padding: 1.5rem 0;
}

.client-brand-item {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #94A3B8;
    transition: all 0.3s ease;
    cursor: default;
    user-select: none;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.client-brand-item:hover {
    color: var(--brand-dark);
    transform: translateY(-2px) scale(1.04);
}

.stats-container {
    background: rgba(0, 174, 239, 0.05);
    border-radius: 1.5rem;
    padding: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    text-align: center;
    gap: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--brand-grey);
    font-weight: 500;
}

/* Testimonials */
.bg-gradient {
    background: linear-gradient(to bottom, #fff, #F8FAFC);
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--brand-green);
    margin: 1rem auto;
    border-radius: 2px;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-xl);
    padding: 4rem 2rem;
    position: relative;
    text-align: center;
    border: 1px solid #E2E8F0;
}

.quote-icon {
    position: absolute;
    top: -24px;
    left: 2rem;
    background: var(--brand-dark);
    color: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    transform: rotate(3deg);
}

.slides-container {
    min-height: 250px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-areas: "stack";
}

.slide {
    grid-area: stack;
    width: 100%;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.slide-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--brand-grey);
    margin-bottom: 2rem;
    max-width: 80%;
}

.slide-author {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--brand-dark);
}

.slide-role {
    font-size: 0.9rem;
    color: var(--brand-blue);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.slider-btn {
    background: white;
    border: 1px solid #E2E8F0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-dark);
}

.slider-btn:hover {
    background: var(--brand-green);
    color: white;
    border-color: var(--brand-green);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    background: #E2E8F0;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    width: 24px;
    background: var(--brand-green);
    border-radius: 4px;
}

/* Contact */
.bg-dark {
    background-color: var(--brand-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.blob-accent {
    position: absolute;
    width: 400px;
    height: 400px;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.2;
    pointer-events: none;
}

.blob-accent.top-right {
    top: 0;
    right: 0;
    background: var(--brand-green);
}

.blob-accent.bottom-left {
    bottom: 0;
    left: 0;
    background: var(--brand-blue);
}

/* ==============================
   CONTACT — New Hero Layout
   ============================== */
.contact-headline {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
    position: relative;
    z-index: 10;
}

.contact-headline h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.contact-headline p {
    color: #94A3B8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-whatsapp-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 1rem;
}

.btn-whatsapp-primary:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

.response-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    color: #64748B;
    font-size: 0.82rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.response-badge svg {
    width: 14px;
    height: 14px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 10;
}

.contact-info h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #94A3B8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.82rem;
}



.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.method small {
    display: block;
    color: #94A3B8;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.method-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.hover-green:hover .method-icon {
    background: var(--brand-green);
}

.hover-blue:hover .method-icon {
    background: var(--brand-blue);
}

.method a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
}

.method span {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}

.hover-green a:hover {
    color: var(--brand-green);
}

.hover-blue a:hover {
    color: var(--brand-blue);
}

.socials {
    display: flex;
    gap: 1rem;
}

.socials a {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.socials a svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
    stroke-width: 2;
    fill: none;
    display: block;
}

.socials a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.socials .hover-green {
    background: var(--brand-green);
}

.socials .hover-blue {
    background: var(--brand-blue);
}

.socials .hover-green:hover {
    background: #7cb332;
}

.socials .hover-blue:hover {
    background: #009bd6;
}

.contact-form-wrapper {
    background: white;
    color: var(--brand-dark);
    padding: 2.5rem;
    border-radius: 1.5rem;
    position: relative;
}

#contact-form h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-subtitle {
    font-size: 0.85rem;
    color: #94A3B8;
    margin-bottom: 1.25rem;
    margin-top: -0.75rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748B;
}


.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.8rem;
    border: 1px solid #E2E8F0;
    border-radius: 0.5rem;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to right, var(--brand-dark), #374151);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.submit-btn:hover {
    background: linear-gradient(to right, var(--brand-blue), var(--brand-green));
    transform: translateY(-2px);
}

/* Success Message */
#success-message {
    position: absolute;
    inset: 0;
    background: white;
    border-radius: 1.5rem;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #DCFCE7;
    color: var(--brand-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.success-icon svg {
    width: 40px;
    height: 40px;
}

#reset-form {
    background: #F1F5F9;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    cursor: pointer;
    margin-top: 1.5rem;
    font-weight: 600;
    color: #64748B;
    transition: var(--transition);
}

#reset-form:hover {
    background: #E2E8F0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Footer */
footer {
    background: #111827;
    color: #9CA3AF;
    padding: 2rem 0;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 1rem;
}

.footer-logo .logo-img {
    height: 70px;
    filter: brightness(0) invert(1);
}

.footer-logo small {
    color: #6B7280;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .services-tracks {
        grid-template-columns: 1fr;
    }

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

    .hero h1 {
        font-size: 2.4rem;
    }
}

@media (min-width: 1025px) {
    .partners-grid {
        grid-template-columns: 1fr 1fr;
    }

    #mobile-toggle {
        display: none;
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    #mobile-toggle {
        display: block;
    }

    /* Fix Header Overlap */
    nav {
        padding: 0.75rem 0;
    }

    .logo-img {
        height: 48px;
        max-width: 120px;
    }

    .hero {
        padding-top: 7.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 1.85rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .partner-card {
        padding: 1.5rem;
    }

    .partner-portrait-wrapper {
        max-width: 230px;
        height: 310px;
        margin-bottom: 1.25rem;
    }

    .clients-list {
        gap: 1.5rem 2rem;
    }

    .client-brand-item {
        font-size: 1.2rem;
    }
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

/* Badge */
.badge-container {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #F3F4F6;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid #E5E7EB;
    margin-bottom: 2rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--brand-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4B5563;
    letter-spacing: 0.5px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(140, 198, 63, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(140, 198, 63, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(140, 198, 63, 0);
    }
}

/* Floating WhatsApp Button */
.whatsapp-link {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 0.5s ease 1s backwards, pulse-green 2s infinite;
}

.whatsapp-link svg {
    width: 36px;
    height: 36px;
    fill: currentColor;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.whatsapp-link:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-link:hover::before {
    opacity: 1;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Adjust for mobile */
@media (max-width: 768px) {
    .whatsapp-link {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 56px;
        height: 56px;
    }

    .whatsapp-link svg {
        width: 30px;
        height: 30px;
    }
}