:root {
    /* Colors */
    --color-primary: #862537;
    /* Vinho Escuro */
    --color-secondary: #D3596A;
    /* Coral/Vinho Claro */
    --color-text-dark: #323232;
    /* Chumbo/Preto */
    --color-text-light: #64748b;
    /* Gray */
    --color-bg-light: #F8F9FA;
    /* Off-white */
    --color-white: #FFFFFF;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;

    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography & Utility */
.highlight {
    color: var(--color-primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-text {
    background-color: transparent;
    color: var(--color-text-dark);
}

.btn-text:hover {
    color: var(--color-primary);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    transition: var(--transition-normal);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    line-height: 1;
}

.logo-graphic {
    position: relative;
    width: 40px;
    height: 42px;
}

.logo-chevron {
    position: absolute;
    width: 28px;
    height: 28px;
    clip-path: polygon(0 0, 60% 0, 100% 50%, 60% 100%, 0 100%, 40% 50%);
}

.logo-chevron-1 {
    top: 0;
    left: 10px;
    background-color: var(--color-primary);
    z-index: 1;
}

.logo-chevron-2 {
    top: 12px;
    left: -2px;
    background-color: var(--color-secondary);
    transform: scale(0.85);
    z-index: 0;
}

.logo-content {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--color-text-dark);
    letter-spacing: -0.05em;
}

.logo-subtext {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--color-primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-dark);
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(211, 89, 106, 0.05) 0%, rgba(134, 37, 55, 0.05) 100%);
    border-radius: 50%;
}

.shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -150px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(134, 37, 55, 0.1);
    color: var(--color-primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-dark);
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

/* Right Side Graphics */
.hero-graphic {
    position: relative;
    width: 300px;
    height: 300px;
}

.chevron {
    position: absolute;
    width: 200px;
    height: 200px;
    clip-path: polygon(0 0, 60% 0, 100% 50%, 60% 100%, 0 100%, 40% 50%);
}

.chevron-1 {
    top: 0;
    left: 50px;
    background-color: var(--color-primary);
    z-index: 1;
}

.chevron-2 {
    top: 70px;
    left: -20px;
    background-color: var(--color-secondary);
    transform: scale(0.85);
    z-index: 0;
}

.glass-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 10;
    width: 250px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.glass-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.glass-card-header i {
    font-size: 2rem;
    color: var(--color-primary);
}

.glass-card-header h5 {
    font-size: 0.95rem;
    margin: 0;
}

.glass-card-header span {
    font-size: 0.75rem;
    color: var(--color-text-light);
}

.stat-bar {
    width: 100%;
    height: 6px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 3px;
}

/* Responsiveness */
@media (max-width: 992px) {

    .nav-list,
    .header-actions .btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        margin: 0 auto 2.5rem auto;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-image-wrapper {
        height: 400px;
    }
}

/* Layout Utils */
.section {
    padding: 6rem 0;
}

.section-subtitle {
    display: block;
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
}

.section-description {
    color: var(--color-text-light);
    font-size: 1.125rem;
    max-width: 600px;
}

.text-center {
    text-align: center;
}

.text-center .section-description {
    margin: 0 auto;
}

/* About Section */
.about-section {
    background-color: var(--color-white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-photo-placeholder {
    background: linear-gradient(135deg, var(--color-bg-light) 0%, #e2e8f0 100%);
    border-radius: 12px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--color-text-light);
    opacity: 0.5;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    line-height: 1.2;
}

.about-text {
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
}

.about-text strong {
    color: var(--color-text-dark);
}

.about-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--color-text-dark);
}

.about-features i {
    color: var(--color-secondary);
    font-size: 1.25rem;
}

/* Services Section */
.services-section {
    background-color: var(--color-bg-light);
}

.section-header {
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.service-card-featured {
    border: 2px solid var(--color-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    background: linear-gradient(to bottom right, var(--color-white), rgba(211, 89, 106, 0.03));
}

.service-card-featured::before {
    transform: scaleX(1);
    /* Always show top gradient bar for featured */
}

.service-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.service-card-featured::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(134, 37, 55, 0.05);
    color: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

.service-text {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Responsiveness Update */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .about-experience-badge {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Footer Section */
.footer {
    background-color: #212529;
    color: var(--color-white);
    padding-top: 5rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-text {
    color: #aeb1b8;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 80%;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.5rem;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-primary);
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: #aeb1b8;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-secondary);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #aeb1b8;
}

.footer-contact i {
    color: var(--color-primary);
    font-size: 1.25rem;
    margin-top: 2px;
}

.footer-contact a {
    transition: var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--color-white);
}

.selos-seguranca {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.selo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #aeb1b8;
}

.selo i {
    color: #10b981;
    /* Green for secure */
}

.footer-bottom {
    background-color: #1a1d20;
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #8c8f94;
    font-size: 0.85rem;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom-container {
        justify-content: center;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: var(--shadow-md);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    animation: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* LGPD Banner */
.lgpd-banner {
    position: fixed;
    bottom: -150%;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.lgpd-banner.show {
    bottom: 0;
}

.lgpd-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.lgpd-banner p {
    font-size: 0.9rem;
    color: var(--color-text-dark);
    margin: 0;
    flex: 1;
}

.lgpd-banner a {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 500;
}

.lgpd-banner .btn {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .lgpd-container {
        flex-direction: column;
        text-align: center;
    }

    .lgpd-banner .btn {
        width: 100%;
    }
}

/* App Section */
.app-section {
    background-color: var(--color-white);
    overflow: hidden;
}

.app-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-video-wrapper {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
}

.app-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.15);
    background: linear-gradient(135deg, rgba(211, 89, 106, 0.1) 0%, rgba(134, 37, 55, 0.1) 100%);
    border-radius: 40px;
    z-index: 0;
}

.app-video {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--color-white);
    position: relative;
    z-index: 1;
    background-color: var(--color-bg-light);
}

.app-description {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
}

.app-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.app-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.app-feature i {
    font-size: 1.75rem;
    color: var(--color-primary);
    background: rgba(134, 37, 55, 0.05);
    padding: 0.75rem;
    border-radius: 10px;
}

.app-feature h4 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
    color: var(--color-text-dark);
}

.app-feature p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.4;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .app-container {
        grid-template-columns: 1fr;
    }

    .app-content {
        order: -1;
    }
}