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

:root {
    /* Cores principais */
    --primary-color: #e74c3c;
    --secondary-color: #2c3e50;
    --accent-color: #3498db;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --success: #27ae60;
    --whatsapp: #25D366;

    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transições */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Container Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

/* Classes utilitárias de visibilidade */
.mobile-only {
    display: none !important;
}

.desktop-only {
    display: block;
}

@media (max-width: 768px) {
    .mobile-only {
        display: flex !important;
    }

    .desktop-only {
        display: none !important;
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

/* ===========================
   Botões
   =========================== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

.btn-whatsapp img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* ===========================
   Header e Navegação
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--spacing-md);
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
    background-color: var(--bg-light);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-size: cover;
    background-position: center;
    margin-top: 70px;
    overflow: hidden;
}

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

/* Mostrar apenas vídeo desktop em telas grandes */
.hero-video-desktop {
    display: block;
}

.hero-video-mobile {
    display: none;
}

/* Mobile: mostrar vídeo mobile e esconder desktop */
@media (max-width: 768px) {
    .hero-video-desktop {
        display: none;
    }

    .hero-video-mobile {
        display: block;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
    padding: var(--spacing-md);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-lg);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-content .btn {
    margin: 0 0.5rem;
}

/* ===========================
   Serviços Homepage (Novo Layout)
   =========================== */
.services-home {
    background-color: var(--white);
}

.service-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    padding: var(--spacing-xl) 0;
    min-height: 600px;
}

.service-home:nth-child(odd) {
    background-color: var(--white);
}

.service-home:nth-child(even) {
    background-color: var(--bg-light);
}

.service-home-reverse {
    direction: ltr;
}

.service-home-reverse .service-home-image {
    order: 2;
}

.service-home-reverse .service-home-content {
    order: 1;
}

.service-home-image {
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    border-radius: 15px;
}

.service-home-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-home:hover .service-home-image img {
    transform: scale(1.05);
}

.service-home-content {
    padding: var(--spacing-lg);
}

.service-home-content h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.service-home-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: var(--spacing-lg);
}

.service-home-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.service-home-buttons .btn {
    flex: 1;
    min-width: 200px;
}

/* ===========================
   Serviços (Layout Antigo para páginas internas)
   =========================== */
.services {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.service-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: var(--spacing-md);
    text-align: center;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
}

/* ===========================
   Unidades
   =========================== */
.units {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-light);
}

.units-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.unit-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
}

.unit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.unit-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.unit-card h3 {
    font-size: 1.4rem;
    margin: var(--spacing-sm) 0;
    color: var(--secondary-color);
    padding: 0 var(--spacing-sm);
}

.unit-card p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    padding: 0 var(--spacing-sm);
}

.unit-card .btn {
    margin-bottom: var(--spacing-md);
}

/* ===========================
   Diferenciais
   =========================== */
.features {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    text-align: center;
    padding: var(--spacing-md);
    transition: var(--transition);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    padding: 20px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--text-light);
}

/* ===========================
   Sobre Nós
   =========================== */
.about {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    text-align: center;
}

.about .section-title {
    color: var(--white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

/* ===========================
   Galeria
   =========================== */
.gallery {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 300px;
    cursor: pointer;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===========================
   FAQ
   =========================== */
.faq {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--spacing-md);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    background-color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--bg-light);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: var(--spacing-md);
    color: var(--text-light);
    line-height: 1.8;
}

/* ===========================
   Contato
   =========================== */
.contact {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
}

.contact-item p {
    color: var(--text-light);
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.social-links img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.contact-form {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form .btn {
    width: 100%;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

.footer-column p,
.footer-column li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

/* ===========================
   Responsividade
   =========================== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        padding: var(--spacing-lg);
        transition: var(--transition);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        width: 100%;
        text-align: center;
        padding: var(--spacing-sm);
    }

    .hero {
        height: 60vh;
        min-height: 450px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .units-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-content .btn {
        display: block;
        margin: 0.5rem 0;
    }

    /* Serviços Homepage - Mobile */
    .service-home {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        min-height: auto;
        padding: var(--spacing-lg) 0;
    }

    .service-home-reverse .service-home-image,
    .service-home-reverse .service-home-content {
        order: initial;
    }

    .service-home-image {
        min-height: 300px;
    }

    .service-home-content {
        padding: var(--spacing-md);
    }

    .service-home-content h2 {
        font-size: 2rem;
    }

    .service-home-content p {
        font-size: 1rem;
    }

    .service-home-buttons {
        flex-direction: column;
    }

    .service-home-buttons .btn {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
    }

    .hero {
        height: 50vh;
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ===========================
   Estilos Específicos das Páginas
   =========================== */

/* Hero Variations */
.hero-festas-infantis {
    background: linear-gradient(135deg, #f39c12 0%, #e74c3c 100%);
}

.hero-corporativo {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
}

/* Corporate Intro Section */
.corporate-intro {
    background: linear-gradient(135deg, #0a2540 0%, #1a4470 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: var(--white);
}

.corporate-intro .container {
    max-width: 900px;
}

.corporate-intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.corporate-intro-icon {
    margin: 2rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.corporate-intro-icon svg {
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.corporate-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.corporate-intro-highlight {
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 500;
    color: var(--white);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Corporate Intro Responsive */
@media (max-width: 768px) {
    .corporate-intro {
        padding: 3rem 1.5rem;
    }

    .corporate-intro-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .corporate-intro-icon svg {
        width: 100px;
        height: 100px;
    }

    .corporate-intro-text,
    .corporate-intro-highlight {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .corporate-intro {
        padding: 2.5rem 1rem;
    }

    .corporate-intro-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .corporate-intro-icon {
        margin: 1.5rem auto;
    }

    .corporate-intro-icon svg {
        width: 80px;
        height: 80px;
    }

    .corporate-intro-text,
    .corporate-intro-highlight {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Three Steps Section */
.three-steps-section {
    background: linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.three-steps-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.three-steps-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--secondary-color);
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 200px;
}

.step-icon {
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.step-icon:hover {
    transform: scale(1.05);
}

.step-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.step-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Three Steps Responsive */
@media (max-width: 768px) {
    .three-steps-section {
        padding: 3rem 1.5rem;
    }

    .three-steps-title {
        font-size: 1.6rem;
        margin-bottom: 2.5rem;
    }

    .steps-container {
        gap: 2.5rem;
    }

    .step-icon svg {
        width: 100px;
        height: 120px;
    }

    .step-icon img {
        width: 90px;
        height: 90px;
    }

    .step-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .three-steps-section {
        padding: 2.5rem 1rem;
    }

    .three-steps-title {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

    .steps-container {
        flex-direction: column;
        gap: 2.5rem;
        align-items: center;
    }

    .step-item {
        max-width: 250px;
    }

    .step-icon svg {
        width: 110px;
        height: 130px;
    }

    .step-icon img {
        width: 100px;
        height: 100px;
    }

    .step-text {
        font-size: 1rem;
    }
}

/* Event Organization Section */
.event-organization {
    background: var(--white);
    padding: 3rem 2rem;
}

.organization-card {
    background: linear-gradient(135deg, #0a2540 0%, #1a4470 100%);
    border: 3px solid var(--white);
    border-radius: 0;
    padding: 2.5rem 2rem;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.organization-icon {
    flex-shrink: 0;
}

.organization-icon img {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

.organization-text {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Menu Cardápios Section */
.menu-cardapios-section {
    background: var(--white);
    padding: 4rem 2rem;
}

.cardapios-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.cardapios-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1rem;
    display: inline-block;
}

.cardapios-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #333;
}

.cardapios-icon {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.menu-options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.menu-option-card {
    background: linear-gradient(135deg, #0a2540 0%, #1a4470 100%);
    color: var(--white);
    padding: 1.5rem 1rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.menu-option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, #1a4470 0%, #0a2540 100%);
}

.menu-option-card.active {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0a2540;
}

.menu-option-card span {
    display: block;
}

/* Menu Gallery */
.menu-gallery {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.menu-gallery-content {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.menu-gallery-image,
.menu-gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.gallery-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-nav svg {
    color: var(--secondary-color);
}

/* Event Organization Responsive */
@media (max-width: 768px) {
    .event-organization {
        padding: 2rem 1.5rem;
    }

    .organization-card {
        flex-direction: column;
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .organization-icon svg {
        width: 60px;
        height: 60px;
    }

    .organization-icon img {
        width: 120px;
        height: 120px;
    }

    .organization-text {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .event-organization {
        padding: 1.5rem 1rem;
    }

    .organization-card {
        padding: 1.5rem 1rem;
    }

    .organization-text {
        font-size: 0.9rem;
    }
}

/* Menu Cardápios Responsive */
@media (max-width: 768px) {
    .menu-cardapios-section {
        padding: 3rem 1.5rem;
    }

    .cardapios-header {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .cardapios-title {
        font-size: 2rem;
    }

    .cardapios-icon svg {
        width: 50px;
        height: 50px;
    }

    .menu-options-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.8rem;
        max-width: 100%;
    }

    .menu-option-card {
        padding: 0.8rem 0.4rem;
        font-size: 0.65rem;
        min-height: 60px;
        letter-spacing: 0.3px;
    }

    .menu-gallery-content {
        height: 400px;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
    }

    .gallery-prev {
        left: 10px;
    }

    .gallery-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .menu-cardapios-section {
        padding: 2rem 0.8rem;
    }

    .cardapios-title {
        font-size: 1.6rem;
    }

    .menu-options-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
        max-width: 100%;
    }

    .menu-option-card {
        padding: 0.6rem 0.3rem;
        font-size: 0.6rem;
        min-height: 55px;
        letter-spacing: 0.2px;
        border-radius: 6px;
    }

    .menu-option-card span {
        line-height: 1.3;
    }

    .menu-gallery-content {
        height: 300px;
    }

    .gallery-nav {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 375px) {
    .menu-options-grid {
        gap: 0.4rem;
    }

    .menu-option-card {
        padding: 0.5rem 0.2rem;
        font-size: 0.55rem;
        min-height: 50px;
    }
}

/* Contact Button Section */
.contact-button-section {
    background: var(--white);
    padding: 2rem;
    text-align: center;
}

.btn-contact-main {
    display: inline-block;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: var(--white);
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.btn-contact-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

/* Corporate Units Section */
.corporate-units-section {
    background: var(--white);
    padding: 4rem 2rem;
}

.corporate-units-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.corporate-units-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1rem;
    display: inline-block;
}

.corporate-units-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #333;
}

.corporate-units-icon {
    flex-shrink: 0;
}

.corporate-units-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.corporate-unit-card {
    background: linear-gradient(135deg, #0a2540 0%, #1a4470 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.corporate-unit-name {
    display: block;
    line-height: 1.3;
}

.corporate-unit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, #1a4470 0%, #0a2540 100%);
}

.corporate-unit-card.active {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.corporate-unit-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.corporate-unit-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.corporate-unit-icon-large {
    display: flex;
    align-items: center;
    justify-content: center;
}

.corporate-unit-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.corporate-unit-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

.corporate-unit-media {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.corporate-unit-image,
.corporate-unit-video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.corporate-unit-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 10;
}

.corporate-unit-nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.corporate-unit-nav-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

/* Corporate Unit Details */
.corporate-unit-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 3rem auto 0;
    padding-top: 3rem;
    border-top: 2px solid #e0e0e0;
}

.corporate-unit-info-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.corporate-unit-info-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.corporate-unit-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.corporate-unit-info-list li {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    padding-left: 1.5rem;
    position: relative;
}

.corporate-unit-info-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.corporate-unit-info-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

/* Corporate Units Responsive */
@media (max-width: 768px) {
    .contact-button-section {
        padding: 1.5rem;
    }

    .btn-contact-main {
        padding: 0.9rem 2.5rem;
        font-size: 1rem;
    }

    .corporate-unit-cta {
        text-align: center;
        margin: 2rem 0;
    }

    .corporate-units-section {
        padding: 3rem 1.5rem;
    }

    .corporate-units-header {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .corporate-units-title {
        font-size: 2rem;
    }

    .corporate-units-icon svg {
        width: 50px;
        height: 50px;
    }

    .corporate-units-grid {
        gap: 0.8rem;
    }

    .corporate-unit-card {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
        min-width: 110px;
        min-height: 55px;
    }

    .corporate-unit-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .corporate-unit-title {
        font-size: 1.6rem;
    }

    .corporate-unit-description {
        font-size: 1rem;
    }

    .corporate-unit-image,
    .corporate-unit-video {
        height: 300px;
    }

    .corporate-unit-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    .corporate-unit-details {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .corporate-unit-info-title {
        font-size: 1.2rem;
    }

    .corporate-unit-info-list li {
        font-size: 0.95rem;
    }

    .corporate-unit-info-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .btn-contact-main {
        width: auto;
        max-width: 280px;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .corporate-unit-cta {
        text-align: center;
        margin: 2rem 0;
    }

    .corporate-units-section {
        padding: 2rem 1rem;
    }

    .corporate-units-title {
        font-size: 1.6rem;
    }

    .corporate-units-grid {
        gap: 0.6rem;
    }

    .corporate-unit-card {
        padding: 0.7rem 1.2rem;
        font-size: 0.75rem;
        min-width: 100px;
        min-height: 52px;
    }

    .corporate-unit-content {
        gap: 1rem;
    }

    .corporate-unit-icon-large svg {
        width: 50px;
        height: 50px;
    }

    .corporate-unit-title {
        font-size: 1.4rem;
    }

    .corporate-unit-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .corporate-unit-image,
    .corporate-unit-video {
        height: 250px;
    }

    .corporate-unit-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .corporate-unit-details {
        gap: 1.5rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .corporate-unit-info-title {
        font-size: 1.1rem;
    }

    .corporate-unit-info-list li {
        font-size: 0.9rem;
        padding-left: 1.2rem;
    }

    .corporate-unit-info-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* Units Map Section */
.units-map-section {
    background: var(--white);
    padding: 4rem 2rem;
}

.units-map-wrapper {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.units-map-image {
    width: 100%;
    height: auto;
    display: block;
}

.units-map-legend {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto auto;
    column-gap: 4rem;
    row-gap: 1rem;
    max-width: 550px;
    margin: 0 auto 2rem;
    padding: 0 1rem;
    justify-content: center;
}

.units-map-legend .legend-item:nth-child(1) { grid-column: 1; grid-row: 1; }
.units-map-legend .legend-item:nth-child(2) { grid-column: 1; grid-row: 2; }
.units-map-legend .legend-item:nth-child(3) { grid-column: 1; grid-row: 3; }
.units-map-legend .legend-item:nth-child(4) { grid-column: 2; grid-row: 1; }
.units-map-legend .legend-item:nth-child(5) { grid-column: 2; grid-row: 2; }

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

.legend-number {
    background: #2c3e50;
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

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

.map-cta-wrapper {
    text-align: center;
    padding-top: 1rem;
    border-top: 2px solid #e0e0e0;
}

.btn-map-contact {
    display: inline-block;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: var(--white);
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.btn-map-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

/* Units Map Responsive */
@media (max-width: 768px) {
    .units-map-section {
        padding: 3rem 1.5rem;
    }

    .units-map-wrapper {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .units-map-legend {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 0.7rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

    .units-map-legend .legend-item:nth-child(1),
    .units-map-legend .legend-item:nth-child(2),
    .units-map-legend .legend-item:nth-child(3),
    .units-map-legend .legend-item:nth-child(4),
    .units-map-legend .legend-item:nth-child(5) {
        grid-column: 1;
        grid-row: auto;
    }

    .legend-number {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .legend-text {
        font-size: 0.95rem;
    }

    .btn-map-contact {
        padding: 0.9rem 2.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .units-map-section {
        padding: 2rem 1rem;
    }

    .units-map-wrapper {
        max-width: 100%;
    }

    .units-map-legend {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 0.6rem;
    }

    .units-map-legend .legend-item:nth-child(1),
    .units-map-legend .legend-item:nth-child(2),
    .units-map-legend .legend-item:nth-child(3),
    .units-map-legend .legend-item:nth-child(4),
    .units-map-legend .legend-item:nth-child(5) {
        grid-column: 1;
        grid-row: auto;
    }

    .legend-number {
        width: 30px;
        height: 30px;
        font-size: 0.95rem;
    }

    .legend-text {
        font-size: 0.9rem;
    }

    .btn-map-contact {
        width: 100%;
        max-width: 300px;
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .map-cta-wrapper {
        padding-top: 0.8rem;
    }
}

/* Corporate Extras Section */
.corporate-extras-section {
    background: linear-gradient(135deg, #0a2540 0%, #1a4470 100%);
    padding: 4rem 2rem;
}

.extras-header {
    text-align: center;
    margin-bottom: 3rem;
}

.extras-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.extras-subtitle {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.extras-carousel-wrapper {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.extras-carousel-content {
    flex: 1;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.extras-image-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #f5f5f5;
}

.extras-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.extras-item-name {
    background: #2d7a3e;
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.extras-nav {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.extras-nav:hover {
    background: var(--white);
    transform: scale(1.1);
}

.extras-nav svg {
    color: var(--secondary-color);
}

/* Corporate Extras Responsive */
@media (max-width: 768px) {
    .corporate-extras-section {
        padding: 3rem 1.5rem;
    }

    .extras-main-title {
        font-size: 2rem;
    }

    .extras-subtitle {
        font-size: 0.95rem;
    }

    .extras-carousel-wrapper {
        gap: 1rem;
    }

    .extras-image-wrapper {
        height: 300px;
    }

    .extras-item-name {
        font-size: 1.3rem;
        padding: 1.2rem;
    }

    .extras-nav {
        width: 40px;
        height: 40px;
    }

    .extras-nav svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .corporate-extras-section {
        padding: 2rem 1rem;
    }

    .extras-main-title {
        font-size: 1.6rem;
    }

    .extras-subtitle {
        font-size: 0.85rem;
    }

    .extras-carousel-wrapper {
        gap: 0.5rem;
    }

    .extras-image-wrapper {
        height: 250px;
    }

    .extras-item-name {
        font-size: 1.1rem;
        padding: 1rem;
    }

    .extras-nav {
        width: 35px;
        height: 35px;
    }
}

/* Locação Intro Section */
.locacao-intro-section {
    background: linear-gradient(135deg, #0a2540 0%, #1a4470 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: var(--white);
}

.locacao-intro-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.locacao-intro-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.locacao-intro-icon {
    margin: 2.5rem auto;
    display: flex;
    justify-content: center;
}

.locacao-intro-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.locacao-intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.locacao-intro-highlight {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

/* Locação Campos Section */
.locacao-campos-section {
    background: var(--white);
    padding: 4rem 2rem;
}

.campos-type-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid #2d7a3e;
    background: #f9f9f9;
    border-radius: 8px;
}

.campos-type-card:last-child {
    border-left-color: #DAA520;
}

.campo-icon {
    flex-shrink: 0;
}

.campo-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.campo-info {
    flex: 1;
}

.campo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.campo-units-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.campo-units-list li {
    font-size: 1.1rem;
    color: var(--text-color);
    padding: 0.3rem 0;
    font-weight: 500;
}

/* Otimização Desktop - Campos */
@media (min-width: 1024px) {
    .locacao-campos-section {
        padding: 3rem 2rem;
    }

    .locacao-campos-section .container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .campos-type-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        margin-bottom: 0;
        border-left: none;
        border-top: 4px solid #2d7a3e;
        align-items: center;
        min-height: 300px;
    }

    .campos-type-card:last-child {
        border-top-color: #DAA520;
        border-left: none;
    }

    .campo-icon {
        margin-bottom: 1.5rem;
    }

    .campo-icon img {
        width: 90px;
        height: 90px;
    }

    .campo-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .campo-units-list {
        text-align: center;
    }

    .campo-units-list li {
        font-size: 1rem;
        padding: 0.4rem 0;
    }
}

/* Locação Comodidades Banner */
.locacao-comodidades-banner {
    background: linear-gradient(135deg, #0a2540 0%, #1a4470 100%);
    padding: 3rem 2rem;
}

.comodidades-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    border: 3px solid var(--white);
    padding: 2.5rem;
    border-radius: 8px;
}

.comodidades-icon {
    flex-shrink: 0;
}

.comodidades-icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.comodidades-banner-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Locação Responsive */
@media (max-width: 768px) {
    .locacao-intro-section {
        padding: 3rem 1.5rem;
    }

    .locacao-intro-title {
        font-size: 2rem;
    }

    .locacao-intro-subtitle {
        font-size: 1.2rem;
    }

    .locacao-intro-icon svg {
        width: 100px;
        height: 100px;
    }

    .locacao-intro-icon img {
        width: 80px;
        height: 80px;
    }

    .locacao-intro-text,
    .locacao-intro-highlight {
        font-size: 1rem;
    }

    .locacao-campos-section {
        padding: 3rem 1.5rem;
    }

    .campos-type-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }

    .campo-icon img {
        width: 60px;
        height: 60px;
    }

    .campo-title {
        font-size: 1.3rem;
    }

    .campo-units-list li {
        font-size: 1rem;
    }

    .locacao-comodidades-banner {
        padding: 2.5rem 1.5rem;
    }

    .comodidades-banner-content {
        padding: 2rem 1.5rem;
    }

    .comodidades-icon svg {
        width: 60px;
        height: 60px;
    }

    .comodidades-icon img {
        width: 50px;
        height: 50px;
    }

    .comodidades-banner-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .locacao-intro-section {
        padding: 2rem 1rem;
    }

    .locacao-intro-title {
        font-size: 1.6rem;
    }

    .locacao-intro-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .locacao-intro-icon svg {
        width: 80px;
        height: 80px;
    }

    .locacao-intro-icon img {
        width: 60px;
        height: 60px;
    }

    .locacao-intro-text,
    .locacao-intro-highlight {
        font-size: 0.95rem;
    }

    .locacao-campos-section {
        padding: 2rem 1rem;
    }

    .campos-type-card {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .campo-icon svg {
        width: 50px;
        height: 50px;
    }

    .campo-icon img {
        width: 50px;
        height: 50px;
    }

    .campo-title {
        font-size: 1.1rem;
    }

    .campo-units-list li {
        font-size: 0.95rem;
    }

    .locacao-comodidades-banner {
        padding: 2rem 1rem;
    }

    .comodidades-banner-content {
        padding: 1.5rem 1rem;
    }

    .comodidades-icon svg {
        width: 50px;
        height: 50px;
    }

    .comodidades-icon img {
        width: 40px;
        height: 40px;
    }

    .comodidades-banner-text {
        font-size: 0.9rem;
    }
}

.hero-quadras {
    background: linear-gradient(135deg, #27ae60 0%, #16a085 100%);
}

.hero-aulas {
    background: linear-gradient(135deg, #8e44ad 0%, #3498db 100%);
}

.hero-contato {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-top: var(--spacing-sm);
}

/* Services Page Grid */
.services-page {
    padding: var(--spacing-xl) 0;
}

.services-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Features Alternative Layout */
.features-alt {
    background: var(--bg-light);
    padding: var(--spacing-xl) 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.feature-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.feature-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 60px;
}

.feature-text h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
    color: var(--secondary-color);
}

.feature-text p {
    color: var(--text-light);
}

/* Units Detailed */
.units-detailed {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.unit-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.unit-info h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
}

.unit-address {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.unit-features {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.unit-features li {
    padding: var(--spacing-xs) 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-color);
}

.unit-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.unit-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.unit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.unit-image:hover img {
    transform: scale(1.05);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.cta-phone {
    font-size: 1.1rem;
}

.cta-phone a {
    color: var(--white);
    font-weight: 600;
    text-decoration: underline;
}

.cta-note {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: var(--spacing-sm);
}

/* Corporate Features */
.features-corporate {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.feature-corporate-item {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.feature-corporate-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon-large {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

.feature-icon-large img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
}

/* Menu Section */
.menu-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.menu-item {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.menu-item h3 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xs);
}

.menu-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Units Corporate */
.units-corporate {
    background: var(--white);
    padding: var(--spacing-xl) 0;
}

.units-capacity {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.unit-capacity-card {
    background: var(--bg-light);
    border-radius: 15px;
    padding: var(--spacing-lg);
    transition: var(--transition);
}

.unit-capacity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.capacity-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.capacity-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.unit-description {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.unit-amenities {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.unit-amenities li {
    padding: 0.5rem 0;
    padding-left: 25px;
    position: relative;
}

.unit-amenities li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

/* Why Choose */
.why-choose {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.why-item {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.why-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.why-item h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
}

.why-item p {
    color: var(--text-light);
}

/* Quadras Styles */
.features-list {
    list-style: none;
    margin-top: var(--spacing-md);
}

.features-list li {
    padding: 0.5rem 0;
    padding-left: 25px;
    position: relative;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.features-grid-quad {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.feature-quad-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
}

.feature-quad-card:hover {
    transform: translateY(-5px);
}

.feature-icon-quad {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.feature-icon-quad img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-quad-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
}

/* Amenities Section */
.amenities-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.amenity-item {
    text-align: center;
    padding: var(--spacing-md);
}

.amenity-item img {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-sm);
}

.amenity-item h4 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
    color: var(--secondary-color);
}

.amenity-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.unit-highlight {
    margin: var(--spacing-sm) 0;
}

.badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Aulas Styles */
.psg-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.psg-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    justify-content: center;
}

.psg-logo {
    height: 80px;
    width: auto;
}

.psg-intro {
    text-align: left;
}

.psg-intro h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xs);
}

.psg-tagline {
    color: var(--text-light);
    font-size: 1.2rem;
}

.psg-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.psg-info h3 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
}

.psg-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.psg-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 10px;
}

.psg-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.psg-icon img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
}

.psg-feature-text h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: var(--secondary-color);
}

.psg-feature-text p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.psg-methodology {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: 12px;
    margin: var(--spacing-lg) 0;
}

.psg-methodology h3 {
    margin-bottom: var(--spacing-md);
}

.psg-methodology ul {
    list-style: none;
}

.psg-methodology li {
    padding: var(--spacing-xs) 0;
    padding-left: 30px;
    position: relative;
}

.psg-methodology li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.psg-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 100px;
}

.psg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Class Sections */
.class-section {
    padding: var(--spacing-xl) 0;
}

.class-beach-tennis {
    background: var(--bg-light);
}

.class-futevolei {
    background: var(--white);
}

.class-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.class-content-reverse {
    direction: ltr;
}

.class-content-reverse .class-image {
    order: 2;
}

.class-content-reverse .class-info {
    order: 1;
}

.class-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.class-info h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
}

.class-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.class-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.detail-item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.detail-item img {
    width: 40px;
    height: 40px;
    min-width: 40px;
}

.detail-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--secondary-color);
}

.detail-item p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.class-benefits {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 10px;
    margin-bottom: var(--spacing-md);
}

.class-benefits h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

.class-benefits ul {
    list-style: none;
}

.class-benefits li {
    padding: 0.5rem 0;
    padding-left: 25px;
    position: relative;
}

.class-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.class-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    height: 100%;
}

.class-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Why Classes */
.why-classes {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.why-grid-classes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.why-class-item {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.why-class-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.why-class-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: var(--spacing-md);
}

.why-class-item h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
}

.why-class-item p {
    color: var(--text-light);
}

/* Contact Page Styles */
.contact-main {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
}

.contact-quick h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.contact-method-card {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.method-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.method-icon img {
    width: 100%;
    height: 100%;
}

.contact-method-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
}

.method-number {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
}

.btn-sm {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
}

.social-contact {
    margin-top: var(--spacing-lg);
}

.social-contact h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.social-link-large {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.social-link-large:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.social-link-large img {
    width: 30px;
    height: 30px;
}

.social-link-large span {
    font-weight: 500;
}

.contact-form-section h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
}

.contact-form-page {
    background: var(--white);
    padding: 0;
    box-shadow: none;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.contact-form-page label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.contact-form-page select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.contact-form-page select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-full {
    width: 100%;
}

.form-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: var(--spacing-md);
}

/* Units Contact */
.units-contact {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.units-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.unit-contact-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.unit-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.unit-contact-header {
    background: var(--secondary-color);
    color: var(--white);
    padding: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.unit-contact-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.unit-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
}

.unit-contact-body {
    padding: var(--spacing-md);
}

.unit-contact-item {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.unit-contact-item img {
    width: 30px;
    height: 30px;
    min-width: 30px;
}

.unit-contact-item strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
}

.unit-contact-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.unit-contact-footer {
    padding: var(--spacing-md);
    border-top: 1px solid var(--bg-light);
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.cta-alt {
    background: var(--secondary-color);
}

.nav-menu a.active {
    color: var(--primary-color);
    background: var(--bg-light);
}

/* Responsive Adjustments for New Pages */
@media (max-width: 1024px) {
    .services-grid-2 {
        grid-template-columns: 1fr;
    }

    .unit-detail {
        grid-template-columns: 1fr;
    }

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

    .psg-image {
        position: static;
        max-height: 400px;
    }

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

    .contact-main-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-lg {
        width: 100%;
    }

    .psg-header {
        flex-direction: column;
        text-align: center;
    }

    .psg-intro {
        text-align: center;
    }

    .psg-intro h2 {
        font-size: 2rem;
    }

    .units-capacity,
    .units-contact-grid {
        grid-template-columns: 1fr;
    }

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

/* ===========================
   Seção Introdutória - Festas Infantis
   =========================== */
.intro-section {
    background-color: #1a3a52;
    padding: 4rem 1.5rem;
    text-align: center;
}

.intro-container {
    max-width: 800px;
    margin: 0 auto;
}

.intro-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 2.5rem;
    letter-spacing: 0.5px;
}

.intro-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2.5rem 0;
}

.intro-icon img {
    width: 180px;
    height: auto;
}

.intro-text {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.intro-text-highlight {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 400;
}

/* Responsivo - Tablet */
@media (min-width: 768px) {
    .intro-section {
        padding: 5rem 2rem;
    }

    .intro-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .intro-icon img {
        width: 200px;
    }

    .intro-text,
    .intro-text-highlight {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
}

/* Responsivo - Desktop */
@media (min-width: 1024px) {
    .intro-section {
        padding: 6rem 2rem;
    }

    .intro-title {
        font-size: 3rem;
        margin-bottom: 3.5rem;
    }

    .intro-icon img {
        width: 220px;
    }

    .intro-text,
    .intro-text-highlight {
        font-size: 1.3rem;
        padding: 0 2rem;
    }
}

/* ===========================
   Seção de Passos - Festas Infantis
   =========================== */
.steps-section {
    background-color: #f5f5f5;
    padding: 4rem 1.5rem;
    text-align: center;
}

.steps-container {
    max-width: 900px;
    margin: 0 auto;
}

.steps-icon-top {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.steps-icon-top img {
    width: 80px;
    height: auto;
}

.steps-main-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
    letter-spacing: 0.5px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.step-icon {
    width: 100px;
    height: auto;
}

.step-icon img {
    width: 100%;
    height: auto;
}

.step-text {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.4;
    margin: 0;
    text-align: center;
}

.step-highlight {
    background-color: #ffffff;
    border: 3px solid #e0e0e0;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    margin-top: 3rem;
}

.step-highlight-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.step-highlight-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.step-highlight-icon {
    width: 60px;
    height: auto;
}

.step-highlight-icon img {
    width: 100%;
    height: auto;
}

.step-highlight-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    border-top: 2px solid #e0e0e0;
    padding-top: 1rem;
}

/* Responsivo - Tablet */
@media (min-width: 768px) {
    .steps-section {
        padding: 5rem 2rem;
    }

    .steps-icon-top img {
        width: 100px;
    }

    .steps-main-title {
        font-size: 2.2rem;
    }

    .steps-list {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
    }

    .step-icon {
        width: 110px;
    }

    .step-text {
        font-size: 1.1rem;
    }

    .step-highlight {
        padding: 2.5rem 2rem;
    }

    .step-highlight-title {
        font-size: 1.8rem;
    }

    .step-highlight-icon {
        width: 70px;
    }

    .step-highlight-subtitle {
        font-size: 1.2rem;
    }
}

/* Responsivo - Desktop */
@media (min-width: 1024px) {
    .steps-section {
        padding: 6rem 2rem;
    }

    .steps-icon-top img {
        width: 120px;
    }

    .steps-main-title {
        font-size: 2.5rem;
        margin-bottom: 4rem;
    }

    .steps-list {
        gap: 4rem;
    }

    .step-icon {
        width: 120px;
    }

    .step-text {
        font-size: 1.2rem;
    }

    .step-highlight {
        padding: 3rem 2.5rem;
    }

    .step-highlight-title {
        font-size: 2rem;
    }

    .step-highlight-icon {
        width: 80px;
    }

    .step-highlight-subtitle {
        font-size: 1.3rem;
    }
}

/* ===========================
   Página de Festas Infantis - Novas Seções
   =========================== */

/* Seção Introdutória */
.party-intro {
    padding: 4rem 1.5rem;
    text-align: center;
    background-color: #ffffff;
}

.party-intro h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.party-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.party-intro-image {
    margin: 2rem auto;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.party-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Estrutura de Buffet */
.party-buffet {
    padding: 1.5rem 0 1rem;
    background-color: #f8f9fa;
    text-align: center;
}

.party-buffet h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    padding: 0 0.5rem;
}

.party-buffet p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
    max-width: 100%;
    margin: 0 auto 0.5rem;
    padding: 0 0.5rem;
}

.btn-cta-buffet {
    display: inline-block;
    background-color: #7cb342;
    color: #ffffff;
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 0 0.4rem 0;
    border: none;
    cursor: pointer;
}

.btn-cta-buffet:hover {
    background-color: #689f38;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.3);
}

.buffet-icon-small {
    margin: 0.8rem auto 0.6rem;
    width: 70px;
    height: auto;
}

.buffet-icon-small img {
    width: 100%;
    height: auto;
    display: block;
}

/* Galeria */
.party-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0 3rem;
}

/* Galeria de Buffet - 2 colunas no mobile */
.party-gallery-buffet {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0.4rem;
    row-gap: 0.4rem;
    margin: 0 0.5rem 0;
    padding: 0;
}

.party-buffet .container {
    padding: 0;
    max-width: 100%;
}

.party-gallery .gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.party-gallery .gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Imagens de buffet - quadradas no mobile */
.party-gallery-buffet .gallery-item {
    border-radius: 6px;
    box-shadow: none;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0;
    overflow: hidden;
}

.party-gallery-buffet .gallery-item img {
    height: 155px;
    width: 100%;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    vertical-align: bottom;
}

.party-gallery .gallery-item:hover img {
    transform: scale(1.05);
}

/* Decoração Temática */
.party-decoration {
    padding: 4rem 1.5rem;
    background-color: #ffffff;
    text-align: center;
}

.party-decoration h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.party-decoration p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.party-featured-image {
    margin: 2rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.party-featured-image img {
    width: 100%;
    height: auto;
}

.party-gallery-tables {
    grid-template-columns: 1fr;
}

/* Recreação e Monitoria */
.party-recreation {
    padding: 4rem 1.5rem;
    background-color: #f8f9fa;
    text-align: center;
}

.party-recreation h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.party-recreation p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Espaço ao Ar Livre */
.party-outdoor {
    padding: 4rem 1.5rem;
    background-color: #ffffff;
    text-align: center;
}

.party-outdoor h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.party-outdoor p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Formulário de Contato */
.party-contact {
    padding: 4rem 1.5rem;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.party-contact h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid #3498db;
}

/* Responsivo - Tablet */
@media (min-width: 768px) {
    .party-buffet {
        padding: 4rem 2rem;
    }

    .party-intro h2,
    .party-buffet h2,
    .party-decoration h2,
    .party-recreation h2,
    .party-outdoor h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .party-buffet p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 2rem;
    }

    .btn-cta-buffet {
        margin-bottom: 1.5rem;
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    .buffet-icon-small {
        width: 100px;
        margin: 1.5rem auto 1rem;
    }

    .party-intro-image {
        width: 400px;
        height: 400px;
    }

    .party-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .party-gallery-buffet {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .party-gallery-buffet .gallery-item img {
        height: 220px;
    }

    .party-gallery-tables {
        grid-template-columns: repeat(3, 1fr);
    }

    .party-gallery .gallery-item img {
        height: 280px;
    }
}

/* Responsivo - Desktop */
@media (min-width: 1024px) {
    .party-intro,
    .party-buffet,
    .party-decoration,
    .party-recreation,
    .party-outdoor,
    .party-contact {
        padding: 6rem 2rem;
    }

    .party-intro h2,
    .party-buffet h2,
    .party-decoration h2,
    .party-recreation h2,
    .party-outdoor h2 {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .party-intro-image {
        width: 450px;
        height: 450px;
    }

    .btn-cta-buffet {
        margin-bottom: 2rem;
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    .buffet-icon-small {
        width: 120px;
        margin: 2rem auto 1.5rem;
    }

    .party-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .party-gallery-buffet {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 2.5rem;
    }

    .party-gallery-buffet .gallery-item img {
        height: 280px;
    }

    .party-gallery .gallery-item img {
        height: 320px;
    }

    .party-intro p,
    .party-buffet p,
    .party-decoration p,
    .party-recreation p,
    .party-outdoor p {
        font-size: 1.2rem;
        line-height: 1.8;
    }
}

/* ===========================
   Image Lightbox/Modal Gallery
   =========================== */
.image-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-counter {
    color: #ffffff;
    font-size: 1.1rem;
    margin-top: 1rem;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    color: #2c3e50;
    font-size: 2.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    line-height: 1;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: #ffffff;
    transform: scale(1.1);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Indicador de cursor pointer nas imagens */
.party-gallery .gallery-item img {
    cursor: pointer;
}

/* Responsivo - Mobile */
@media (max-width: 768px) {
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 2rem;
        padding: 0.3rem 0.6rem;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-counter {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
    }

    .lightbox-image {
        max-height: 80vh;
    }
}

/* ===========================
   Seção Destaque Festas
   =========================== */
.party-highlight {
    background-color: #0a2540;
    background: linear-gradient(135deg, #0a2540 0%, #1a3a5a 100%);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.party-highlight .container {
    max-width: 900px;
}

.party-highlight-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.party-highlight-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 3rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.party-highlight-icon {
    margin: 3rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.party-highlight-icon img {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.party-highlight-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.party-highlight-text-bottom {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsivo Mobile */
@media (max-width: 768px) {
    .party-highlight {
        padding: 2.5rem 1.5rem;
    }

    .party-highlight-title {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
        line-height: 1.4;
    }

    .party-highlight-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }

    .party-highlight-icon {
        margin: 2rem auto;
    }

    .party-highlight-icon img {
        width: 110px;
    }

    .party-highlight-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.7;
    }

    .party-highlight-text-bottom {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .party-highlight {
        padding: 2rem 1rem;
    }

    .party-highlight-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .party-highlight-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .party-highlight-icon {
        margin: 1.5rem auto;
    }

    .party-highlight-icon img {
        width: 110px;
    }

    .party-highlight-text,
    .party-highlight-text-bottom {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* ===========================
   Seção 3 Passos
   =========================== */
.party-steps {
    background-color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.steps-icon-top {
    margin-bottom: 1.5rem;
}

.steps-icon-celebration {
    font-size: 5rem;
    display: inline-block;
}

.steps-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.steps-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background-color: #333;
}

.steps-list {
    margin: 3rem auto;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.step-text {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    margin: 0;
}

.steps-highlight {
    margin-top: 3rem;
    padding: 2rem 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.steps-highlight-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 1rem;
    display: inline-block;
}

.steps-highlight-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #333;
}

.steps-highlight-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Otimização Desktop */
@media (min-width: 1024px) {
    .party-steps {
        padding: 3rem 2rem;
    }

    .party-highlight-icon {
        margin: 1rem auto 1.5rem;
    }

    .party-highlight-icon img {
        width: 80px;
    }

    .steps-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .steps-list {
        max-width: 900px;
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
        margin: 2rem auto;
    }

    .step-item {
        flex: 1;
        max-width: 200px;
    }

    .step-icon {
        width: 80px;
        height: 80px;
    }

    .step-text {
        font-size: 1.1rem;
    }

    .steps-highlight {
        margin-top: 2rem;
    }
}

/* Responsivo Mobile */
@media (max-width: 768px) {
    .party-steps {
        padding: 2.5rem 1.5rem;
        text-align: center;
    }

    .party-steps .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .steps-icon-celebration {
        font-size: 3.5rem;
    }

    .steps-title {
        font-size: 1.4rem;
    }

    .steps-list {
        gap: 2rem;
        margin: 2rem auto;
        align-items: center;
    }

    .step-item {
        text-align: center;
    }

    .step-icon {
        width: 90px;
        height: 90px;
        margin: 0 auto;
    }

    .step-icon svg {
        width: 90px;
        height: 90px;
    }

    .step-icon img {
        width: 90px;
        height: 90px;
    }

    .step-text {
        font-size: 0.95rem;
        line-height: 1.4;
        text-align: center;
    }

    .steps-highlight {
        padding: 1.5rem 1rem;
        margin-top: 2rem;
    }

    .steps-highlight-title {
        font-size: 1.8rem;
        padding-bottom: 0.8rem;
        margin-bottom: 1.2rem;
    }

    .steps-highlight-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .party-steps {
        padding: 2rem 1rem;
        text-align: center;
    }

    .party-steps .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .steps-icon-celebration {
        font-size: 4.5rem;
    }

    .steps-title {
        font-size: 1.2rem;
        padding-bottom: 0.8rem;
    }

    .steps-list {
        gap: 1.8rem;
        margin: 1.5rem auto;
        align-items: center;
    }

    .step-item {
        text-align: center;
    }

    .step-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }

    .step-icon svg {
        width: 80px;
        height: 80px;
    }

    .step-icon img {
        width: 80px;
        height: 80px;
    }

    .step-text {
        font-size: 0.9rem;
        text-align: center;
    }

    .steps-highlight {
        padding: 1.2rem 0.8rem;
        margin-top: 1.5rem;
    }

    .steps-highlight-title {
        font-size: 1.6rem;
        padding-bottom: 0.6rem;
        margin-bottom: 1rem;
    }

    .steps-highlight-subtitle {
        font-size: 1.05rem;
    }
}

/* ===========================
   Seção Vídeo Pacote
   =========================== */
.party-video-section {
    background-color: #ffffff;
    padding: 1rem 1.5rem 2rem;
}

.video-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.party-video {
    width: 100%;
    height: auto;
    display: block;
    background-color: #000;
}

/* Responsivo Mobile */
@media (max-width: 768px) {
    .party-video-section {
        padding: 0.5rem 1.2rem 1.5rem;
    }

    .video-wrapper {
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    }
}

@media (max-width: 480px) {
    .party-video-section {
        padding: 0.3rem 1rem 1.2rem;
    }

    .video-wrapper {
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
}

/* ===========================
   Seção Pacotes
   =========================== */
.party-packages {
    background-color: #ffffff;
    padding: 2rem 1.5rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.package-card {
    background-color: #0a2540;
    background: linear-gradient(135deg, #0a2540 0%, #1a3a5a 100%);
    color: var(--white);
    padding: 1.3rem 0.9rem;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.package-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.package-name {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.25;
    margin: 0;
}

.packages-cta {
    text-align: center;
    margin-top: 2rem;
}

.btn-green-cta {
    background-color: #4CAF50;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.3);
    border: none;
}

.btn-green-cta:hover {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

/* ===========================
   Passo 2
   =========================== */
.party-step2 {
    background-color: #ffffff;
    padding: 3rem 1.5rem;
}

.step2-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    text-align: center;
}

.step2-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 1rem;
    display: inline-block;
}

.step2-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #333;
}

.step2-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 2rem 0;
    text-align: center;
}

.party-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    max-width: 450px;
    margin: 0 auto 2.5rem;
}

.party-type-card {
    background-color: #0a2540;
    background: linear-gradient(135deg, #0a2540 0%, #1a3a5a 100%);
    color: var(--white);
    padding: 0.9rem 0.5rem;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.party-type-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.party-type-card.active {
    background: linear-gradient(135deg, #2d8f4f 0%, #1f6838 100%);
    border-color: #25a85a;
    box-shadow: 0 4px 15px rgba(45, 143, 79, 0.4);
}

.party-type-name {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: block;
    line-height: 1.2;
}

.party-type-showcase {
    max-width: 600px;
    margin: 0 auto;
}

.party-type-image-wrapper,
.party-type-video-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-height: 400px;
    background: #000;
}

.party-type-image-wrapper img,
.party-type-video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.party-type-video {
    width: 100%;
    min-height: 400px;
    display: block;
    object-fit: cover;
}

.party-type-nav {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.party-type-nav-btn {
    background-color: rgba(255, 255, 255, 0.95);
    color: #333;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.party-type-nav-btn:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.party-type-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0 1rem;
}

/* Responsivo Mobile */
@media (max-width: 768px) {
    .party-packages {
        padding: 1.8rem 1.2rem;
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.7rem;
        max-width: 100%;
    }

    .package-card {
        padding: 1rem 0.6rem;
    }

    .package-name {
        font-size: 0.75rem;
        line-height: 1.2;
    }

    .packages-cta {
        margin-top: 1.8rem;
    }

    .btn-green-cta {
        padding: 0.85rem 2rem;
        font-size: 0.85rem;
        width: auto;
    }

    .party-step2 {
        padding: 2rem 1.2rem;
    }

    .step2-header {
        margin-bottom: 1.2rem;
    }

    .step2-title {
        font-size: 1.8rem;
        padding-bottom: 0.8rem;
    }

    .step2-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .party-types-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

    .party-type-card {
        padding: 0.85rem 0.4rem;
    }

    .party-type-name {
        font-size: 0.7rem;
        letter-spacing: 0.2px;
    }

    .party-type-showcase {
        padding: 0 0.5rem;
    }

    .party-type-image-wrapper,
    .party-type-video-wrapper {
        margin-bottom: 1rem;
        border-radius: 10px;
        min-height: 300px;
    }

    .party-type-video {
        min-height: 300px;
    }

    .party-type-nav {
        bottom: 10px;
        gap: 0.7rem;
    }

    .party-type-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    .party-type-description {
        font-size: 0.92rem;
        padding: 0 0.3rem;
        line-height: 1.65;
        text-align: justify;
    }
}

@media (max-width: 480px) {
    .party-packages {
        padding: 1.5rem 1rem;
    }

    .packages-grid {
        gap: 0.6rem;
    }

    .package-card {
        padding: 0.9rem 0.5rem;
    }

    .package-name {
        font-size: 0.7rem;
    }

    .packages-cta {
        margin-top: 1.5rem;
    }

    .btn-green-cta {
        padding: 0.8rem 1.8rem;
        font-size: 0.8rem;
    }

    .party-step2 {
        padding: 1.8rem 1rem;
    }

    .step2-header {
        gap: 0.6rem;
    }

    .step2-title {
        font-size: 1.2rem;
    }

    .step2-trophy {
        width: 38px;
        height: 38px;
    }

    .step2-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }

    .party-types-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.45rem;
        margin-bottom: 1.3rem;
    }

    .party-type-card {
        padding: 0.75rem 0.3rem;
    }

    .party-type-name {
        font-size: 0.65rem;
        letter-spacing: 0.15px;
    }

    .party-type-showcase {
        padding: 0 0.2rem;
    }

    .party-type-image-wrapper,
    .party-type-video-wrapper {
        margin-bottom: 0.9rem;
        border-radius: 8px;
        min-height: 250px;
    }

    .party-type-video {
        min-height: 250px;
    }

    .party-type-nav {
        bottom: 8px;
        gap: 0.6rem;
    }

    .party-type-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }

    .party-type-description {
        font-size: 0.88rem;
        padding: 0 0.2rem;
        line-height: 1.6;
        text-align: justify;
    }
}

/* Mobile Extra Pequeno (iPhone SE, etc) */
@media (max-width: 375px) {
    .container {
        padding: 0 0.8rem;
    }

    .party-highlight {
        padding: 1.8rem 0.8rem;
    }

    .party-highlight-title {
        font-size: 1.1rem;
    }

    .party-highlight-subtitle {
        font-size: 0.95rem;
    }

    .party-highlight-icon img {
        width: 65px;
    }

    .party-highlight-text,
    .party-highlight-text-bottom {
        font-size: 0.88rem;
    }

    .party-steps {
        padding: 1.8rem 0.8rem;
    }

    .steps-title {
        font-size: 1.1rem;
    }

    .party-packages {
        padding: 1.3rem 0.8rem;
    }

    .packages-grid {
        gap: 0.55rem;
    }

    .package-card {
        padding: 0.85rem 0.5rem;
    }

    .package-name {
        font-size: 0.68rem;
        letter-spacing: 0.3px;
    }

    .btn-green-cta {
        padding: 0.75rem 1.6rem;
        font-size: 0.75rem;
    }

    .party-step2 {
        padding: 1.5rem 0.8rem;
    }

    .step2-title {
        font-size: 1.1rem;
    }

    .step2-trophy {
        width: 35px;
        height: 35px;
    }

    .step2-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .party-types-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem;
        margin-bottom: 1.2rem;
    }

    .party-type-card {
        padding: 0.7rem 0.25rem;
    }

    .party-type-name {
        font-size: 0.6rem;
        letter-spacing: 0.1px;
    }

    .party-type-nav-btn {
        width: 34px;
        height: 34px;
        font-size: 1.1rem;
    }

    .party-type-description {
        font-size: 0.85rem;
        line-height: 1.58;
    }
}

/* ===========================
   CTA Passo 2
   =========================== */
.step2-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ===========================
   Passo 3 - Unidades
   =========================== */
.party-step3 {
    background-color: #ffffff;
    padding: 3rem 1.5rem;
}

.step3-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    text-align: center;
}

.step3-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 1rem;
    display: inline-block;
}

.step3-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #333;
}

.step3-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 2rem 0;
    text-align: center;
}

.units-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    max-width: 450px;
    margin: 0 auto 2.5rem;
    justify-content: center;
}

.unit-card {
    background-color: #0a2540;
    background: linear-gradient(135deg, #0a2540 0%, #1a3a5a 100%);
    color: var(--white);
    padding: 0.9rem 0.5rem;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    flex: 0 0 calc(33.333% - 0.4rem);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.unit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.unit-card.active {
    background: linear-gradient(135deg, #2d8f4f 0%, #1f6838 100%);
    border-color: #25a85a;
    box-shadow: 0 4px 15px rgba(45, 143, 79, 0.4);
}

.unit-name {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    min-height: 2.4rem;
    text-align: center;
}

.unit-showcase {
    max-width: 700px;
    margin: 0 auto;
}

.unit-image-wrapper,
.unit-video-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.unit-image-wrapper img,
.unit-video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

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

.unit-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

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

.unit-gallery .gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    line-height: 0;
    height: fit-content;
}

.unit-gallery .gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.unit-gallery .gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
}

.unit-nav {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.unit-nav-btn {
    background-color: rgba(255, 255, 255, 0.95);
    color: #333;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.unit-nav-btn:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

/* Responsivo Mobile */
@media (max-width: 768px) {
    .step2-cta {
        margin-top: 1.8rem;
    }

    .party-step3 {
        padding: 2rem 1.2rem;
    }

    .step3-header {
        gap: 0.7rem;
        margin-bottom: 0.8rem;
    }

    .step3-icon-svg {
        font-size: 2.2rem;
    }

    .step3-title {
        font-size: 1.4rem;
    }

    .step3-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .units-grid {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .unit-card {
        padding: 0.85rem 0.4rem;
        flex: 0 0 calc(33.333% - 0.35rem);
    }

    .unit-name {
        font-size: 0.7rem;
    }

    .unit-image-wrapper,
    .unit-video-wrapper {
        margin-bottom: 1rem;
        border-radius: 10px;
    }

    .unit-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .unit-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        margin-top: 1.5rem;
    }

    .unit-gallery .gallery-item img {
        height: 180px;
    }

    .unit-nav {
        bottom: 10px;
        gap: 0.7rem;
    }

    .unit-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .step2-cta {
        margin-top: 1.5rem;
    }

    .party-step3 {
        padding: 1.8rem 1rem;
    }

    .step3-header {
        gap: 0.6rem;
    }

    .step3-title {
        font-size: 1.2rem;
    }

    .step3-icon-svg {
        font-size: 2rem;
    }

    .step3-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }

    .units-grid {
        gap: 0.45rem;
        margin-bottom: 1.3rem;
    }

    .unit-card {
        padding: 0.75rem 0.3rem;
        flex: 0 0 calc(33.333% - 0.3rem);
    }

    .unit-name {
        font-size: 0.65rem;
    }

    .unit-image-wrapper,
    .unit-video-wrapper {
        margin-bottom: 0.9rem;
        border-radius: 8px;
    }

    .unit-description {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        padding: 0 0.5rem;
    }

    .unit-gallery {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        margin-top: 1.2rem;
    }

    .unit-gallery .gallery-item img {
        height: 220px;
    }

    .unit-nav {
        bottom: 8px;
        gap: 0.6rem;
    }

    .unit-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
}

@media (max-width: 375px) {
    .party-step3 {
        padding: 1.5rem 0.8rem;
    }

    .step3-title {
        font-size: 1.1rem;
    }

    .step3-icon-svg {
        font-size: 1.8rem;
    }

    .step3-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .units-grid {
        gap: 0.4rem;
        margin-bottom: 1.2rem;
    }

    .unit-card {
        padding: 0.7rem 0.25rem;
    }

    .unit-name {
        font-size: 0.6rem;
    }

    .unit-nav-btn {
        width: 34px;
        height: 34px;
        font-size: 1.1rem;
    }
}

/* ===========================
   Modal de Pacotes
   =========================== */
.package-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.package-modal.active {
    display: flex;
}

.package-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.package-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-modal-content img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.package-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background-color: transparent;
    color: white;
    border: none;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10002;
    line-height: 1;
}

.package-modal-close:hover {
    transform: scale(1.2);
    color: #ff5555;
}

.package-modal-prev,
.package-modal-next {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    border: none;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10002;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.package-modal-prev {
    left: 20px;
}

.package-modal-next {
    right: 20px;
}

.package-modal-prev:hover,
.package-modal-next:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.package-modal-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    z-index: 10002;
}

/* Responsivo Mobile */
@media (max-width: 768px) {
    .package-modal-content {
        max-width: 92%;
    }

    .package-modal-close {
        top: 8px;
        right: 8px;
        font-size: 2.3rem;
        width: 38px;
        height: 38px;
        background-color: rgba(0, 0, 0, 0.6);
        border-radius: 50%;
    }

    .package-modal-content img {
        max-height: 82vh;
        border-radius: 6px;
    }

    .package-modal-prev,
    .package-modal-next {
        width: 38px;
        height: 38px;
        font-size: 1.4rem;
    }

    .package-modal-prev {
        left: 8px;
    }

    .package-modal-next {
        right: 8px;
    }

    .package-modal-counter {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
        bottom: 12px;
    }
}

@media (max-width: 480px) {
    .package-modal-content {
        max-width: 95%;
    }

    .package-modal-content img {
        max-height: 78vh;
        border-radius: 5px;
    }

    .package-modal-close {
        font-size: 2rem;
        width: 35px;
        height: 35px;
        top: 5px;
        right: 5px;
    }

    .package-modal-prev,
    .package-modal-next {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }

    .package-modal-prev {
        left: 5px;
    }

    .package-modal-next {
        right: 5px;
    }

    .package-modal-counter {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
        bottom: 10px;
    }
}

/* ===========================
   Seção Depoimentos
   =========================== */
.testimonials-section {
    background-color: #f5f5f5;
    padding: 4rem 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.testimonials-icon img {
    width: 60px;
    height: auto;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 2px;
}

.testimonials-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0 auto 3rem;
    max-width: 1200px;
}

.testimonials-wrapper {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
}

.testimonials-wrapper::-webkit-scrollbar {
    display: none;
}

.testimonial-video {
    position: relative;
    flex: 0 0 auto;
    width: 280px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.testimonial-video:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.25);
}

.testimonial-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.testimonial-video:hover .play-overlay {
    opacity: 0.8;
}

.testimonial-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2d8f4f 0%, #1f6838 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.carousel-nav {
    background: white;
    border: 2px solid #2d8f4f;
    color: #2d8f4f;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-nav:hover {
    background: #2d8f4f;
    color: white;
}

.testimonials-cta {
    text-align: center;
}

/* Modal de Vídeos */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    z-index: 10001;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-video-player {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 10px;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: none;
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.video-modal-close:hover {
    background: white;
    transform: scale(1.1);
}

.video-modal-prev,
.video-modal-next {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: none;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.video-modal-prev:hover,
.video-modal-next:hover {
    background: white;
    transform: scale(1.1);
}

/* Responsivo Tablets */
@media (max-width: 1024px) {
    .testimonials-carousel {
        padding: 0 1rem;
    }

    .testimonial-video {
        width: 250px;
        height: 450px;
    }

    .carousel-nav {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Responsivo Mobile */
@media (max-width: 768px) {
    .testimonials-title {
        font-size: 2rem;
    }

    .testimonials-carousel {
        flex-direction: column;
        gap: 1.5rem;
    }

    .carousel-nav {
        display: none;
    }

    .testimonials-wrapper {
        gap: 0.8rem;
        padding: 0.5rem 0;
    }

    .testimonial-video {
        width: 220px;
        height: 400px;
    }

    .testimonial-label {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }

    .play-overlay svg {
        width: 50px;
        height: 50px;
    }

    .video-modal-content {
        flex-direction: column;
        gap: 0.5rem;
        max-width: 95%;
    }

    .modal-video-player {
        max-height: 70vh;
    }

    .video-modal-close {
        top: -45px;
        right: 0;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }

    .video-modal-prev,
    .video-modal-next {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .testimonials-icon img {
        width: 50px;
    }

    .testimonials-title {
        font-size: 1.6rem;
    }

    .testimonial-video {
        width: 200px;
        height: 360px;
    }

    .testimonial-label {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        bottom: 15px;
    }

    .play-overlay svg {
        width: 45px;
        height: 45px;
    }

    .modal-video-player {
        max-height: 65vh;
        border-radius: 8px;
    }

    .video-modal-close {
        font-size: 1.8rem;
        width: 36px;
        height: 36px;
    }
}

/* ===========================
   Seção Extras
   =========================== */
.extras-section {
    background-color: #0a2540;
    padding: 3rem 1.5rem;
}

.extras-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.extras-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.extras-subtitle {
    font-size: 0.95rem;
    color: white;
    letter-spacing: 0.5px;
}

.extras-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.extra-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.extra-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.extra-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    line-height: 0;
}

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

.extra-name {
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    color: #0a2540;
    padding: 0.9rem;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Responsivo Extras - Tablet */
@media (min-width: 600px) {
    .extras-section {
        padding: 3.5rem 2rem;
    }

    .extras-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.8rem;
    }

    .extras-title {
        font-size: 2rem;
    }

    .extras-subtitle {
        font-size: 1rem;
    }

    .extra-image {
        height: 180px;
    }

    .extra-name {
        font-size: 0.9rem;
        padding: 1rem;
    }
}

/* Desktop */
@media (min-width: 769px) {
    .extras-section {
        padding: 4rem 2rem;
    }

    .extras-grid {
        gap: 2rem;
    }

    .extra-image {
        height: 200px;
    }
}

/* Mobile pequeno */
@media (max-width: 599px) {
    .extras-section {
        padding: 1.5rem 1rem;
    }

    .extras-header {
        margin-bottom: 1.2rem;
    }

    .extras-title {
        font-size: 1.2rem;
    }

    .extras-subtitle {
        font-size: 0.75rem;
    }

    .extras-grid {
        gap: 1rem;
    }

    .extra-image {
        height: 180px;
    }

    .extra-name {
        font-size: 0.7rem;
        padding: 0.6rem;
    }
}

@media (max-width: 375px) {
    .extras-section {
        padding: 1.2rem 0.8rem;
    }

    .extras-title {
        font-size: 1.1rem;
    }

    .extras-subtitle {
        font-size: 0.7rem;
    }

    .extras-grid {
        gap: 0.8rem;
    }

    .extra-image {
        height: 160px;
    }

    .extra-name {
        font-size: 0.65rem;
        padding: 0.5rem;
    }
}

/* ===========================
   Formulário de Contato RD Station
   =========================== */
.contact-form-section {
    background: linear-gradient(135deg, #2d8f4f 0%, #1f6838 100%);
    padding: 3rem 1.5rem;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.rd-contact-form {
    max-width: 550px;
    margin: 0 auto;
    padding: 0;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.4rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: none;
    border-radius: 3px;
    font-size: 0.9rem;
    font-family: inherit;
    background-color: white;
    color: #333;
    transition: box-shadow 0.3s ease;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    padding-right: 2.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    text-align: center;
    margin-top: 1.5rem;
}

.btn-submit {
    background-color: #0a2540;
    color: white;
    border: none;
    padding: 0.9rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 3px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 200px;
}

.btn-submit:hover {
    background-color: #081b2f;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-message {
    text-align: center;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background-color: rgba(255, 255, 255, 0.9);
    color: #2d8f4f;
    display: block;
}

.form-message.error {
    background-color: rgba(255, 255, 255, 0.9);
    color: #c0392b;
    display: block;
}

/* Responsivo Formulário - Desktop */
@media (min-width: 769px) {
    .contact-form-section {
        padding: 4rem 2rem;
    }

    .contact-form-title {
        font-size: 2rem;
    }

    .rd-contact-form {
        max-width: 600px;
    }

    /* Primeira linha: NOME | TELEFONE */
    .form-row:nth-of-type(1) {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Segunda linha: E-MAIL (full) */
    .form-row:nth-of-type(2) {
        grid-template-columns: 1fr;
    }

    /* Terceira linha: ASSUNTO | UNIDADE */
    .form-row:nth-of-type(3) {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Quarta linha: MENSAGEM (full) */
    .form-row:nth-of-type(4) {
        grid-template-columns: 1fr;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.85rem;
        font-size: 0.95rem;
    }

    .form-group label {
        font-size: 0.8rem;
    }

    .btn-submit {
        padding: 1rem 3rem;
        font-size: 1rem;
        max-width: 200px;
    }
}

/* Tablet */
@media (min-width: 600px) and (max-width: 768px) {
    .contact-form-section {
        padding: 3.5rem 1.5rem;
    }

    .contact-form-title {
        font-size: 1.8rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .form-group label {
        font-size: 0.75rem;
    }

    .btn-submit {
        padding: 0.95rem 2.5rem;
        width: auto;
        max-width: none;
    }
}

/* Mobile específico */
@media (max-width: 599px) {
    .contact-form-section {
        padding: 1.5rem 1rem;
    }

    .contact-form-header {
        margin-bottom: 1.2rem;
    }

    .contact-form-title {
        font-size: 1.2rem;
        margin-bottom: 0;
    }

    .form-row {
        margin-bottom: 0.6rem;
        gap: 0.6rem;
        grid-template-columns: 1fr !important; /* Força 1 coluna */
    }

    .form-group label {
        font-size: 0.65rem;
        margin-bottom: 0.25rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.5rem 0.6rem;
        font-size: 0.8rem;
    }

    .form-group textarea {
        min-height: 80px;
    }

    .btn-submit {
        width: 100%;
        max-width: 100%;
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .form-submit {
        margin-top: 0.8rem;
    }
}

/* Mobile muito pequeno */
@media (max-width: 375px) {
    .contact-form-section {
        padding: 1.2rem 0.8rem;
    }

    .contact-form-title {
        font-size: 1.1rem;
    }

    .form-row {
        margin-bottom: 0.5rem;
        gap: 0.5rem;
    }

    .form-group label {
        font-size: 0.6rem;
        margin-bottom: 0.2rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.45rem 0.5rem;
        font-size: 0.75rem;
    }

    .btn-submit {
        padding: 0.65rem 1.2rem;
        font-size: 0.8rem;
    }
}

/* ===========================
   Nova Página de Contato
   =========================== */

/* Hero Contato New */
.hero-contato-new {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-contato-new .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-contato-new .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
}

.hero-contato-new .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 0 2rem;
}

.hero-contato-new .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-contato-new .hero-content p {
    font-size: 1.4rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* Formulário de Contato */
.contato-form-section {
    padding: 4rem 0;
    background: white;
}

.contato-form {
    max-width: 800px;
    margin: 0 auto;
}

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

.contato-form-group {
    display: flex;
    flex-direction: column;
}

.contato-form-group.contato-form-full {
    grid-column: 1 / -1;
}

.contato-form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contato-form-group input,
.contato-form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: #f9f9f9;
}

.contato-form-group input:focus,
.contato-form-group textarea:focus {
    outline: none;
    border-color: #0a2540;
    background: white;
}

.contato-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contato-submit-btn {
    display: block;
    width: 100%;
    padding: 1.2rem 2rem;
    background: #0a2540;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contato-submit-btn:hover {
    background: #1a4470;
    transform: translateY(-2px);
}

/* Galeria de Fotos */
.contato-gallery-section {
    padding: 2rem 0 4rem;
    background: white;
}

.contato-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.contato-gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 12px;
}

.contato-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.contato-gallery-item:hover img {
    transform: scale(1.05);
}

/* Seção Unidades Contato */
.contato-unidades-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a2540 0%, #1a4470 100%);
}

.contato-unidades-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.contato-unidades-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 3rem;
}

.contato-unidades-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.contato-unidade-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Video da Unidade */
.contato-unidade-video-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
}

.contato-unidade-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contato-video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

.contato-video-play-overlay:hover {
    background: rgba(0, 0, 0, 0.2);
}

.contato-video-play-overlay svg {
    width: 70px;
    height: 70px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.contato-video-play-overlay:hover svg {
    transform: scale(1.1);
}

.contato-video-play-overlay.playing {
    opacity: 0;
    pointer-events: none;
}

/* Galeria da Unidade */
.contato-unidade-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 4px;
    background: #f0f0f0;
}

.contato-unidade-gallery img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* Info da Unidade */
.contato-unidade-info {
    padding: 1.5rem;
}

.contato-unidade-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 1rem;
}

.contato-unidade-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contato-unidade-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a2540;
    margin: 1.5rem 0 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contato-unidade-location {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contato-unidade-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.contato-unidade-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #555;
    font-size: 0.95rem;
}

.contato-unidade-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #0a2540;
    border-radius: 50%;
}

/* Botões da Unidade */
.contato-unidade-buttons {
    display: flex;
    gap: 1rem;
}

.contato-btn-mapa {
    flex: 1;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 2px solid #0a2540;
    color: #0a2540;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.contato-btn-mapa:hover {
    background: #0a2540;
    color: white;
}

.contato-btn-whatsapp {
    flex: 1;
    padding: 0.8rem 1.5rem;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.contato-btn-whatsapp:hover {
    background: #128C7E;
}

.contato-btn-whatsapp svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Responsivo Contato */
@media (max-width: 1024px) {
    .contato-unidades-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-contato-new {
        height: 60vh;
        min-height: 450px;
    }

    .hero-contato-new .hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .hero-contato-new .hero-content p {
        font-size: 1.2rem;
    }

    .contato-form-section {
        padding: 3rem 0;
    }

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

    .contato-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contato-unidades-section {
        padding: 3rem 0;
    }

    .contato-unidades-title {
        font-size: 2rem;
    }

    .contato-unidade-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-contato-new {
        height: 50vh;
        min-height: 400px;
    }

    .hero-contato-new .hero-content h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .hero-contato-new .hero-content p {
        font-size: 1.1rem;
        padding: 0 0.5rem;
    }

    .contato-gallery-grid {
        grid-template-columns: 1fr;
    }

    .contato-video-play-overlay svg {
        width: 50px;
        height: 50px;
    }
}
