/* Reset e Configurações Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #45f500;
    --primary-glow: #45f50080;
    --secondary-color: #050505;
    --surface-color: rgba(20, 20, 20, 0.6);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-light: #ffffff;
    --text-gray: #a3a3a3;
    --text-dark: #1a1a1a;
    --gradient-primary: linear-gradient(135deg, #45f500, #2a9a00);
    --shadow: 0 10px 30px rgba(69, 245, 0, 0.15);
    --shadow-dark: 0 20px 40px rgba(0, 0, 0, 0.8);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.logo-img {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(69, 245, 0, 0.3));
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(69, 245, 0, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    box-shadow: 0 0 8px var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.7) 0%, rgba(5, 5, 5, 0.4) 50%, rgba(5, 5, 5, 1) 100%);
    z-index: -1;
}

.hero-info {
    text-align: center;
    z-index: 2;
    padding: 0 1.5rem;
    margin-top: -80px;
    /* Offset for visual balance */
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(69, 245, 0, 0.3));
    opacity: 0;
    animation: zoomFadeIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.4s;
}

.hero-title .subtitle {
    font-size: 0.4em;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--text-gray);
    opacity: 0;
    animation: fadeSlideDown 0.8s ease forwards 0.2s;
}

.hero-title .price-text {
    font-size: 0.25em;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    align-self: center;
    margin-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards 0.8s;
}

/* Animations */
@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes zoomFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
        filter: blur(5px);
    }

    to {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Split Animation */
.hero-split-anim {
    position: relative;
    margin-bottom: 2.5rem;
    overflow: hidden;
    padding: 1rem 0;
}

.split-line {
    width: 0;
    height: 1px;
    background: var(--primary-color);
    margin: 0.5rem auto;
    animation: expandLine 1s cubic-bezier(0.8, 0, 0.2, 1) forwards 0.5s;
    box-shadow: 0 0 10px var(--primary-color);
}

.hero-desc-top,
.hero-desc-bottom {
    font-size: 1.25rem;
    color: var(--text-gray);
    font-weight: 300;
    opacity: 0;
}

.hero-desc-top {
    transform: translateY(20px);
    animation: slideUp 0.8s ease forwards 1s;
}

.hero-desc-bottom {
    transform: translateY(-20px);
    animation: slideDown 0.8s ease forwards 1s;
}

@keyframes expandLine {
    0% {
        width: 0;
        opacity: 0;
    }

    100% {
        width: 150px;
        opacity: 1;
    }
}

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

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

.promo-highlight {
    color: var(--primary-color);
    font-weight: 600;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 20px rgba(69, 245, 0, 0.3);
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background: #39cc00;
    box-shadow: 0 0 30px rgba(69, 245, 0, 0.5);
    transform: translateY(-2px);
}

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

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

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-gray);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    opacity: 0.7;
}

@keyframes bounce {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 10px);
    }
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 1rem auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--primary-glow);
}

/* Banner Rotativo */
.banner-rotativo {
    padding: 4rem 0;
    background: #000;
    overflow: hidden;
}

.banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.banner-text-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.banner-text-content .highlight {
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
}

.banner-text-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.banner-slider-container {
    position: relative;
    width: 100%;
    height: 700px;
    /* Constrained height for the frame */
    border-radius: 32px;
    /* Rounded corners for the container */
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.banner-slide.active {
    opacity: 1;
    z-index: 1;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 32px;
    /* Redundant but safe */
}

.banner-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 15px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.indicator {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--primary-glow);
}

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

    .banner-slider-container {
        height: 400px;
    }
}

/* Promoções Section */
.promocoes {
    background: linear-gradient(0deg, var(--secondary-color) 0%, #0a0a0a 100%);
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.promo-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.promo-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.promo-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    opacity: 0.9;
    transition: var(--transition);
}

.promo-card:hover .promo-image {
    opacity: 1;
    transform: scale(1.05);
}

.promo-content {
    padding: 2rem;
}

.promo-content h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.promo-price {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(69, 245, 0, 0.2);
}

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

/* Impact Section */
.impacto {
    position: relative;
    padding: 4rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.impacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.impacto-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Radial Gradient Gray to Black - Animated Loop */
    background: radial-gradient(circle at 50% 50%, #333333 0%, #1a1a1a 40%, #000000 80%);
    background-size: 200% 200%;
    animation: gradientPulse 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes gradientPulse {
    0% {
        background-size: 150% 150%;
        background-position: center;
    }

    50% {
        background-size: 200% 200%;
        background-position: center;
    }

    100% {
        background-size: 150% 150%;
        background-position: center;
    }
}

.impacto-content {
    text-align: left;
}

.impacto-content-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.impacto-img-anim {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    animation: floatImage 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

@keyframes floatImage {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

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

    .impacto-content {
        text-align: center;
        margin-bottom: 2rem;
    }

    .impacto-text {
        font-size: 2.5rem;
    }
}

.impacto-text {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    position: relative;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.impacto-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    color: var(--primary-color);
    overflow: hidden;
    border-right: 4px solid var(--primary-color);
    white-space: nowrap;
    animation: typeFill 6s cubic-bezier(0.7, 0, 0.3, 1) infinite;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

@keyframes typeFill {

    0%,
    10% {
        width: 0;
    }

    40%,
    60% {
        width: 100%;
    }

    90%,
    100% {
        width: 0;
    }
}



.impacto-sub {
    font-size: 1.2rem;
    color: var(--text-gray);
    letter-spacing: 4px;
    text-transform: uppercase;
    transform: translateY(20px);
    opacity: 0;
    /* transition: all 0.6s ease 0.5s; - changing to auto fade in */
    animation: fadeSlideUp 0.8s ease forwards 0.5s;
}

.impacto:hover .impacto-sub {
    transform: translateY(0);
    opacity: 1;
}

/* Galeria Container */
.galeria-container {
    max-width: 1280px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    position: relative;
}

.galeria-carousel {
    height: 600px;
}

.galeria-controls .galeria-btn {
    width: 56px;
    height: 56px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.galeria-controls .galeria-btn:hover {
    background: var(--primary-color);
    color: #000;
}

/* Serviços Section */
.servicos {
    background: #080808;
}

.section-header-image-container {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    width: 100%;
}

.section-header-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(69, 245, 0, 0.2));
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.servico-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.6), rgba(10, 10, 10, 0.8));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(69, 245, 0, 0.1), transparent 60%);
    opacity: 0;
    transition: var(--transition);
}

.servico-card:hover {
    transform: translateY(-8px);
    border-color: rgba(69, 245, 0, 0.3);
}

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

.servico-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    filter: invert(1);
    opacity: 0.8;
    transition: var(--transition);
}

.servico-card:hover .servico-icon {
    filter: invert(1) drop-shadow(0 0 8px var(--primary-color));
    opacity: 1;
    transform: scale(1.1);
}

.servico-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.servico-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Marcas Section */
.marcas h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.marcas p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Agendamento Section */
.agendamento {
    background: linear-gradient(135deg, #0a0a0a, #111);
    position: relative;
    overflow: hidden;
}

.agendamento::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(69, 245, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.agendamento-content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.agendamento-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.05),
            transparent);
    transform: skewX(-25deg);
    animation: reflectionLoop 6s infinite;
    pointer-events: none;
}

@keyframes reflectionLoop {
    0% {
        left: -150%;
    }

    15% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.agendamento-info h3 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.agendamento-info ul li {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--text-gray);
}

.agendamento-info i {
    color: var(--primary-color);
    background: rgba(69, 245, 0, 0.1);
    padding: 8px;
    border-radius: 50%;
    margin-right: 12px;
}

/* Franchise Section (New) */
.franquia {
    background: #000;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.franquia-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.franquia-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.franquia-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(69, 245, 0, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.franquia h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.franquia p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.franquia-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.franquia-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.franquia-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.02),
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.02),
            transparent);
    transform: skewX(-25deg);
    animation: reflectionLoop 6s infinite;
    /* 1s animation within 4s loop roughly */
    pointer-events: none;
}

.franquia-item h4 {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.franquia-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Main Footer */
.main-footer {
    background: #000;
    border-top: 1px solid var(--glass-border);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(69, 245, 0, 0.2));
}

.brand-tagline {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 300px;
}

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

.social-icons-footer a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icons-footer a:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 0 15px var(--primary-glow);
}

.footer-contact-info h3,
.footer-nav h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-contact-info h3::after,
.footer-nav h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.contact-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.icon-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: var(--transition);
}

.icon-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.icon-box i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: rgba(69, 245, 0, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.icon-box span {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.4;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '›';
    color: var(--primary-color);
    font-weight: 800;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.9rem;
    opacity: 0.6;
}

.footer-disclaimer {
    font-size: 0.7rem !important;
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.4;
    opacity: 0.4 !important;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #050505;
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        gap: 2rem;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .agendamento-content {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }

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

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

    .footer-text {
        text-align: center;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulseBtn 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #fff;
}

@keyframes pulseBtn {
    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);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}