/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #082b2f;
    --bg-darker: #051a1d;
    --bg-card: rgba(21, 117, 122, 0.1);
    --border-color: rgba(43, 196, 154, 0.2);

    --accent-teal: #15757a;
    --accent-sec: #0e8d7a;
    --accent-bright: #0eae86;
    --accent-light: #2bc49a;

    --text-light: #ededed;
    --text-muted: #b2c9cb;

    --font-main: 'Sora', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    position: relative;
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    background-image:
        radial-gradient(circle at 15% 50%, rgba(14, 141, 122, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(43, 196, 154, 0.08) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-sec), var(--accent-bright));
    color: #fff;
    box-shadow: 0 4px 15px rgba(14, 141, 122, 0.9);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 141, 122, 0.5);
    background: linear-gradient(135deg, var(--accent-bright), var(--accent-light));
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--accent-light);
    border: 1px solid var(--accent-light);
}

.btn-outline:hover {
    background: rgba(43, 196, 154, 0.1);
    transform: translateY(-2px);
}

.w-100 {
    width: 100%;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    padding: 15px 0;
    background: rgba(8, 43, 47, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
    height: 100px;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-list {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 6px;
    border-radius: 50px;
}

.nav-list a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    transition: all 0.3s ease;
    padding: 10px 24px;
    border-radius: 40px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.nav-list a.active {
    background: #fff;
    color: #000;
}

.nav-list a:hover:not(.active) {
    background: rgba(255, 255, 255, 0.12);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
}

/* GLOBAL BACKGROUND */
.site-background {
    position: absolute;
    top: 100vh;
    /* Start after hero */
    left: 0;
    right: 0;
    bottom: 0;
    /* Stretch to bottom of page */
    z-index: -10;
    pointer-events: none;
    overflow: hidden;
    background-color: var(--bg-dark);
}

/* Mesh Gradients */
.bg-mesh {
    position: absolute;
    opacity: 0.12;
    /* Increased slightly to compensate for the softer radial fade */
    animation: float-bg 20s infinite ease-in-out alternate;
    pointer-events: none;
}

.bg-mesh-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-sec) 0%, transparent 70%);
    top: 5%;
    right: -15%;
    animation-delay: 0s;
}

.bg-mesh-2 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-bright) 0%, transparent 70%);
    top: 35%;
    left: -15%;
    animation-delay: -5s;
}

.bg-mesh-3 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(21, 117, 122, 0.8) 0%, transparent 70%);
    top: 75%;
    right: -15%;
    animation-delay: -10s;
}

@keyframes float-bg {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 30px) scale(1.1);
    }
}

/* Radar/Concentric Circles Pattern */
.bg-radar {
    position: absolute;
    top: 0;
    left: -50vw;
    width: 200vw;
    height: 200vw;
    background-image: repeating-radial-gradient(circle at center,
            transparent 0,
            transparent 80px,
            rgba(255, 255, 255, 0.05) 81.5px);
    opacity: 0.8;
    mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%);
}

/* Dot Grid Pattern */
.bg-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.6) 15%, rgba(0, 0, 0, 0.6) 90%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.6) 15%, rgba(0, 0, 0, 0.6) 90%, rgba(0, 0, 0, 0) 100%);
}

/* HERO SECTION */
.hero {
    position: relative;
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

@keyframes float1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(80px, -120px) scale(1.2);
    }

    66% {
        transform: translate(-60px, 80px) scale(0.8);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes float2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-100px, 80px) scale(1.3);
    }

    66% {
        transform: translate(60px, -60px) scale(0.8);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(14, 141, 122, 0.2);
    top: -100px;
    left: -100px;
    animation: float1 15s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(43, 196, 154, 0.15);
    bottom: 20%;
    right: -50px;
    animation: float2 18s ease-in-out infinite;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 100px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    padding-right: 20px;
}

.hero-visual {
    padding-left: 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: none;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(43, 196, 154, 0.15);
}

.badge svg {
    width: 20px;
    height: 20px;
    color: var(--accent-light);
}

.headline {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #fff;
    letter-spacing: -0.03em;
}

.subheadline {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.3;
}

.hero-text {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Dashboard Mockup (Hero Visual) */
.dashboard-mockup {
    background: var(--bg-darker);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 8px rgba(255, 255, 255, 0.02);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) scale(1.30);
    transition: var(--transition);
}


.mockup-header {
    height: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.dashboard-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* SECTION GLOBAL */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 700px;
    margin-inline: auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-light);
    margin: 16px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* WHAT IS SECTION */
.what-is {
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.what-is-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 60px;
    align-items: center;
}

.what-is-text p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.what-is-text p:last-child {
    margin-bottom: 0;
}

.what-is-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateX(10px);
    background: rgba(21, 117, 122, 0.2);
    border-color: var(--accent-bright);
}

.stat-icon {
    color: var(--accent-light);
    width: 28px;
    height: 28px;
}

/* FEATURES SECTION */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-sec), var(--accent-bright));
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--bg-card);
    border-color: var(--border-color);
    transform: translateY(-5px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(21, 117, 122, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    margin-bottom: 24px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--accent-sec);
    color: #fff;
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* BENEFITS SECTION */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.benefit-block {
    display: flex;
    flex-direction: column;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.benefit-block:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(43, 196, 154, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), inset 0 0 30px rgba(43, 196, 154, 0.05);
}

.benefit-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(43, 196, 154, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent-light);
    border: 1px solid rgba(43, 196, 154, 0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.benefit-icon-wrapper svg {
    width: 28px;
    height: 28px;
}

.benefit-block:hover .benefit-icon-wrapper {
    background: var(--accent-sec);
    color: #fff;
    box-shadow: 0 0 20px rgba(43, 196, 154, 0.5);
    transform: scale(1.05);
}

.benefit-number {
    font-size: 12rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    position: absolute;
    bottom: -30px;
    right: -10px;
    line-height: 1;
    z-index: 0;
    transition: all 0.5s ease;
    user-select: none;
    pointer-events: none;
    letter-spacing: -5px;
}

.benefit-block:hover .benefit-number {
    color: rgba(43, 196, 154, 0.04);
    transform: scale(1.05) translate(-10px, -10px);
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--accent-light);
    position: relative;
    z-index: 1;
}

.benefit-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

/* PRICING SECTION */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.toggle-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    align-items: center;
}

.toggle-label.active {
    color: #fff;
    font-weight: 700;
}

.discount-badge {
    background: rgba(43, 196, 154, 0.15);
    color: var(--accent-light);
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 12px;
    margin-left: 8px;
    border: 1px solid rgba(43, 196, 154, 0.3);
    font-weight: 600;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background-color: var(--text-muted);
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: rgba(21, 117, 122, 0.3);
    border-color: rgba(43, 196, 154, 0.5);
}

input:checked+.slider:before {
    transform: translateX(28px);
    background-color: var(--accent-light);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    border-color: var(--border-color);
    background: rgba(255, 255, 255, 0.04);
}

.pricing-card.highlighted {
    background: var(--bg-card);
    border: 2px solid var(--accent-bright);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(14, 141, 122, 0.15);
}

.pricing-card.highlighted:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-sec), var(--accent-bright));
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.card-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlighted .plan-name {
    color: var(--accent-light);
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.plan-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 4px;
    opacity: 0.9;
}

.installments {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--accent-light);
    margin-bottom: 2px;
    letter-spacing: -0.5px;
}

.plan-features {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.plan-features i {
    color: var(--accent-light);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* FOOTER */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0 20px;
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand {
    width: 100%;
    text-align: center;
}

.footer-logo {
    height: 90px;
    margin: 0 auto 0;
    display: block;
    object-fit: contain;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 10px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-badge {
    height: 110px;
    margin-bottom: 2px;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-badge:hover {
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .headline {
        font-size: 3.5rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .pricing-card.highlighted {
        transform: scale(1);
    }

    .pricing-card.highlighted:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .dashboard-mockup {
        display: none;
        /* Hide complex mockup on mobile for clean look */
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(8, 43, 47, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 30px;
        gap: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition);
        visibility: hidden;
    }

    .nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding: 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .what-is-content {
        grid-template-columns: 1fr;
    }

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

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-brand {
        margin: 0 auto;
    }
}

/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}