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

:root {
    /* Paleta de cores inspirada no mar */
    --color-ocean-blue: #006994;
    --color-deep-blue: #003d5c;
    --color-sea-green: #00a8cc;
    --color-light-blue: #87ceeb;
    --color-white: #ffffff;
    --color-off-white: #f5f7fa;
    --color-text-dark: #2c3e50;
    --color-text-light: #7f8c8d;
    
    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Tipografia */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

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

/* Navigation Menu */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
}

.navbar-logo {
    display: flex;
    align-items: center;
}

.navbar-logo img {
    max-width: 80px;
    height: auto;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    margin: 0;
    padding: 0;
    align-items: center;
}

.navbar-menu li {
    margin: 0;
}

.navbar-menu a {
    color: var(--color-deep-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    padding: var(--spacing-xs) 0;
    position: relative;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-ocean-blue);
    transition: width 0.3s ease;
}

.navbar-menu a:hover {
    color: var(--color-ocean-blue);
}

.navbar-menu a:hover::after {
    width: 100%;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    gap: 5px;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-deep-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    min-height: 450px;
    max-height: 600px;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 105, 148, 0.7) 0%, rgba(0, 61, 92, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: var(--spacing-md);
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    margin-bottom: var(--spacing-md);
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out;
}

.hero-logo img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Botões */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Seção Sobre */
.about {
    padding: var(--spacing-xl) 0;
    background: var(--color-off-white);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--color-deep-blue);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-sea-green), var(--color-ocean-blue));
    border-radius: 2px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    align-items: start;
}

.about-images-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 300px;
}

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

.about-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.about-item {
    background: var(--color-white);
    padding: var(--spacing-md);
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.about-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.about-item h3 {
    font-size: 1.5rem;
    color: var(--color-deep-blue);
    margin-bottom: var(--spacing-sm);
}

.about-item p {
    color: var(--color-text-light);
    line-height: 1.8;
}

/* Seção Localização e Detalhes */
.location-details {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.location-details-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    align-items: start;
}

.location-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

.equipment {
    padding: var(--spacing-xl) 0;
    background: var(--color-off-white);
}

.equipment-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    align-items: start;
}

.equipment-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.equipment-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

.info-card {
    background: var(--color-white);
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--color-ocean-blue);
}

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

.info-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.info-card h3 {
    font-size: 1.5rem;
    color: var(--color-deep-blue);
    margin-bottom: var(--spacing-sm);
}

.info-card p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.info-card p:last-child {
    margin-bottom: 0;
}

.info-card strong {
    color: var(--color-deep-blue);
    font-weight: 600;
}

.price-highlight {
    background: linear-gradient(135deg, rgba(0, 105, 148, 0.1) 0%, rgba(0, 168, 204, 0.1) 100%);
    padding: var(--spacing-sm);
    border-radius: 8px;
    margin-top: var(--spacing-sm);
    border-left: 3px solid var(--color-ocean-blue);
}

.price-highlight strong {
    color: var(--color-ocean-blue);
    font-size: 1.1rem;
}

/* Seção Valores/Pricing */
.pricing {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--color-deep-blue) 0%, var(--color-ocean-blue) 100%);
    color: var(--color-white);
}

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

.pricing .section-title::after {
    background: linear-gradient(90deg, var(--color-light-blue), var(--color-white));
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    outline: none;
}

.pricing-card:focus {
    outline: 3px solid var(--color-light-blue);
    outline-offset: 2px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pricing-card:active {
    transform: translateY(-2px);
}

.pricing-card-featured {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-light-blue);
    box-shadow: 0 5px 20px rgba(135, 206, 235, 0.3);
}

.pricing-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    color: var(--color-white);
}

.pricing-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-sm);
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin: var(--spacing-sm) 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.pricing-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
}

.pricing-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-sm);
    padding: var(--spacing-xs) var(--spacing-sm);
    background: rgba(37, 211, 102, 0.2);
    border: 2px solid rgba(37, 211, 102, 0.4);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-cta {
    background: rgba(37, 211, 102, 0.3);
    border-color: rgba(37, 211, 102, 0.6);
    transform: scale(1.05);
}

.pricing-cta svg {
    width: 20px;
    height: 20px;
    fill: var(--color-white);
}

.pricing-cta span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-white);
}

/* Seção de Links Sociais */
.social-links {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--color-deep-blue) 0%, var(--color-ocean-blue) 100%);
    color: var(--color-white);
}

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

.social-links .section-title::after {
    background: linear-gradient(90deg, var(--color-light-blue), var(--color-white));
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    text-decoration: none;
    color: var(--color-white);
    transition: all 0.3s ease;
    min-height: 180px;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.social-btn:hover .social-icon svg {
    transform: scale(1.1);
}

.social-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--color-white);
    transition: transform 0.3s ease;
}

.social-btn span {
    font-size: 1.3rem;
    font-weight: 600;
}

/* Seção Galeria - Carrossel */
.gallery {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.carousel-container {
    margin-top: var(--spacing-lg);
    position: relative;
}

.carousel-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--color-off-white);
}

.carousel-slide img,
.carousel-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-slide video {
    background: #000;
}

/* Placeholder para quando não houver conteúdo */
.carousel-slide .gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-light-blue) 0%, var(--color-sea-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Botões de navegação do carrossel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    color: var(--color-deep-blue);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    user-select: none;
}

.carousel-btn:hover {
    background: var(--color-white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
    left: 15px;
}

.carousel-btn-next {
    right: 15px;
}

/* Indicadores do carrossel */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 61, 92, 0.3);
    border: 2px solid var(--color-deep-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-indicator:hover {
    background: rgba(0, 61, 92, 0.5);
    transform: scale(1.2);
}

.carousel-indicator.active {
    background: var(--color-deep-blue);
    transform: scale(1.3);
}

/* Footer */
.footer {
    background: var(--color-deep-blue);
    color: var(--color-white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

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

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    margin-bottom: var(--spacing-sm);
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer-logo img {
    max-width: 120px;
    height: auto;
    display: block;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    text-align: left;
}

.footer-location {
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-light-blue);
    text-align: left;
}

.footer-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    text-align: left;
}

.footer-section-title {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-white);
    font-weight: 600;
    text-align: left;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-light-blue);
    padding-left: 5px;
}

.footer-info {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.footer-info li {
    margin-bottom: var(--spacing-xs);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: var(--spacing-xs);
    border-radius: 5px;
}

.footer-social-link:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
    padding-left: var(--spacing-sm);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

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

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--color-white);
}

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

.floating-whatsapp:active {
    transform: scale(0.95);
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

/* Responsividade - Mobile First */
@media (max-width: 768px) {
    .navbar-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: var(--spacing-md);
        gap: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .navbar-menu.active {
        transform: translateX(0);
    }
    
    .navbar-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .navbar-menu li:last-child {
        border-bottom: none;
    }
    
    .navbar-menu a {
        display: block;
        padding: var(--spacing-sm);
        font-size: 1rem;
    }
    
    .navbar-menu a::after {
        display: none;
    }
    
    .navbar-toggle {
        display: flex;
    }
    
    .navbar-logo img {
        max-width: 60px;
    }
    
    .navbar {
        background: rgba(255, 255, 255, 0.98);
    }
    
    .hero {
        min-height: 350px;
        height: 50vh;
        max-height: 450px;
        margin-top: 70px;
    }
    
    .hero-video {
        object-fit: cover;
    }
    
    .hero-logo img {
        max-width: 150px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        padding: 0 var(--spacing-sm);
    }
    
    .hero-content {
        padding: var(--spacing-sm);
    }
    
    .footer {
        padding: var(--spacing-md) 0 var(--spacing-sm);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
        margin-bottom: var(--spacing-md);
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: var(--spacing-sm);
        align-items: center;
    }
    
    .footer-section {
        margin-bottom: 0;
        align-items: flex-start;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-title,
    .footer-location,
    .footer-description {
        text-align: center;
    }
    
    .footer-section-title {
        font-size: 1rem;
        margin-bottom: var(--spacing-xs);
        text-align: left;
        width: 100%;
    }
    
    .footer-links,
    .footer-info {
        text-align: left;
        width: 100%;
    }
    
    .footer-description {
        font-size: 0.85rem;
        margin-bottom: 0;
    }
    
    .footer-links li,
    .footer-info li {
        margin-bottom: var(--spacing-xs);
    }
    
    .footer-social {
        align-items: flex-start;
        gap: var(--spacing-xs);
    }
    
    .footer-social-link {
        justify-content: flex-start;
        padding: var(--spacing-xs);
    }
    
    .footer-logo img {
        max-width: 100px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: var(--spacing-md);
    }
    
    /* Reduzir padding das seções no mobile */
    .location-details,
    .about,
    .equipment,
    .pricing,
    .social-links,
    .gallery {
        padding: var(--spacing-md) 0;
    }
    
    /* Layouts em coluna única no mobile */
    .location-details-grid,
    .about-grid,
    .equipment-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        margin-top: var(--spacing-md);
    }
    
    .location-image {
        height: 250px;
        margin-bottom: var(--spacing-sm);
    }
    
    .about-images-container {
        order: -1;
    }
    
    .about-image {
        height: 250px;
    }
    
    .equipment-image {
        order: -1;
        height: 250px;
    }
    
    .location-image img {
        height: 100%;
    }
    
    .about-image img {
        height: 100%;
        object-fit: cover;
    }
    
    .equipment-image img {
        height: 100%;
        object-fit: cover;
    }
    
    .about-content {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .about-item {
        padding: var(--spacing-sm);
    }
    
    .about-item h3 {
        font-size: 1.3rem;
    }
    
    .info-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .info-card {
        padding: var(--spacing-sm);
    }
    
    .info-card h3 {
        font-size: 1.3rem;
    }
    
    /* Pricing em 2 colunas no mobile */
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xs);
    }
    
    .pricing-card {
        padding: var(--spacing-xs);
    }
    
    .pricing-icon {
        font-size: 2rem;
    }
    
    .pricing-card h3 {
        font-size: 1.1rem;
    }
    
    .pricing-subtitle {
        font-size: 0.85rem;
    }
    
    .pricing-price {
        font-size: 1.5rem;
    }
    
    .pricing-note {
        font-size: 0.8rem;
    }
    
    .links-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-sm);
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .social-btn {
        min-height: 130px;
        padding: var(--spacing-xs);
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .social-btn span {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        width: auto;
        max-width: 90%;
    }
    
    .carousel-container {
        margin-top: var(--spacing-md);
    }
    
    .carousel-wrapper {
        border-radius: 15px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .carousel-btn-prev {
        left: 10px;
    }
    
    .carousel-btn-next {
        right: 10px;
    }
    
    .carousel-slide {
        aspect-ratio: 4 / 3;
    }
    
    .carousel-indicators {
        margin-top: var(--spacing-sm);
        gap: 8px;
    }
    
    .gallery {
        padding: var(--spacing-lg) 0;
    }
}

@media (max-width: 480px) {
    .navbar-logo img {
        max-width: 50px;
    }
    
    .hero {
        min-height: 300px;
        height: 45vh;
        max-height: 400px;
        margin-top: 60px;
    }
    
    .hero-logo img {
        max-width: 120px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: var(--spacing-xs);
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: var(--spacing-sm);
        padding: 0;
    }
    
    .footer {
        padding: var(--spacing-sm) 0;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
        margin-bottom: var(--spacing-sm);
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: var(--spacing-sm);
        align-items: center;
    }
    
    .footer-section {
        margin-bottom: 0;
        align-items: flex-start;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: var(--spacing-xs);
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: var(--spacing-xs);
        text-align: center;
    }
    
    .footer-location {
        font-size: 0.85rem;
        margin-bottom: var(--spacing-xs);
        text-align: center;
    }
    
    .footer-description {
        font-size: 0.75rem;
        margin-bottom: 0;
        text-align: center;
        line-height: 1.4;
    }
    
    .footer-section-title {
        font-size: 0.95rem;
        margin-bottom: var(--spacing-xs);
        text-align: left;
        width: 100%;
    }
    
    .footer-links,
    .footer-info {
        text-align: left;
        width: 100%;
    }
    
    .footer-links a,
    .footer-info li {
        font-size: 0.8rem;
    }
    
    .footer-links li,
    .footer-info li {
        margin-bottom: 4px;
    }
    
    .footer-social {
        align-items: flex-start;
        gap: 4px;
    }
    
    .footer-social-link {
        justify-content: flex-start;
        padding: 4px;
        font-size: 0.8rem;
    }
    
    .footer-social-link svg {
        width: 16px;
        height: 16px;
    }
    
    .footer-bottom {
        padding-top: var(--spacing-sm);
    }
    
    .footer-logo img {
        max-width: 80px;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .container {
        padding: 0 var(--spacing-xs);
    }
    
    /* Reduzir ainda mais o padding em telas pequenas */
    .location-details,
    .about,
    .equipment,
    .pricing,
    .social-links,
    .gallery {
        padding: var(--spacing-sm) 0;
    }
    
    .location-image {
        height: 200px;
        margin-bottom: var(--spacing-sm);
    }
    
    .about-images-container {
        order: -1;
    }
    
    .about-image {
        height: 200px;
    }
    
    .equipment-image {
        height: 200px;
    }
    
    .location-image img {
        height: 100%;
    }
    
    .about-image img {
        height: 100%;
        object-fit: cover;
    }
    
    .equipment-image img {
        height: 100%;
        object-fit: cover;
    }
    
    .about-item {
        padding: var(--spacing-xs);
    }
    
    .about-icon {
        font-size: 2rem;
    }
    
    .about-item h3 {
        font-size: 1.1rem;
    }
    
    .about-item p {
        font-size: 0.9rem;
    }
    
    .info-card {
        padding: var(--spacing-xs);
    }
    
    .info-icon {
        font-size: 2rem;
    }
    
    .info-card h3 {
        font-size: 1.1rem;
    }
    
    .info-card p {
        font-size: 0.9rem;
    }
    
    .pricing-grid {
        gap: var(--spacing-xs);
    }
    
    .pricing-card {
        padding: var(--spacing-xs);
    }
    
    .pricing-icon {
        font-size: 1.8rem;
    }
    
    .pricing-card h3 {
        font-size: 1rem;
    }
    
    .pricing-subtitle {
        font-size: 0.8rem;
    }
    
    .pricing-price {
        font-size: 1.3rem;
    }
    
    .pricing-note {
        font-size: 0.75rem;
    }
    
    .pricing-cta {
        padding: var(--spacing-xs);
        margin-top: var(--spacing-xs);
    }
    
    .pricing-cta svg {
        width: 16px;
        height: 16px;
    }
    
    .pricing-cta span {
        font-size: 0.75rem;
    }
    
    .social-links {
        padding: var(--spacing-md) 0;
    }
    
    .social-btn {
        min-height: 120px;
        padding: var(--spacing-xs);
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-btn span {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.85rem 1.8rem;
        font-size: 0.95rem;
        width: auto;
        max-width: 100%;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .carousel-btn-prev {
        left: 8px;
    }
    
    .carousel-btn-next {
        right: 8px;
    }
    
    .carousel-indicator {
        width: 10px;
        height: 10px;
        border-width: 1.5px;
    }
    
    .carousel-indicators {
        gap: 6px;
    }
    
    .gallery {
        padding: var(--spacing-md) 0;
    }
    
    .footer {
        padding: var(--spacing-sm) 0;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xs);
        margin-bottom: var(--spacing-sm);
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: var(--spacing-xs);
        align-items: center;
    }
    
    .footer-section {
        margin-bottom: 0;
        align-items: flex-start;
    }
    
    .footer-logo {
        margin-bottom: 4px;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 4px;
        text-align: center;
    }
    
    .footer-location {
        font-size: 0.8rem;
        margin-bottom: 4px;
        text-align: center;
    }
    
    .footer-description {
        font-size: 0.7rem;
        line-height: 1.4;
        text-align: center;
    }
    
    .footer-section-title {
        font-size: 0.85rem;
        margin-bottom: 4px;
        text-align: left;
        width: 100%;
    }
    
    .footer-links,
    .footer-info {
        text-align: left;
        width: 100%;
    }
    
    .footer-links a,
    .footer-info li {
        font-size: 0.75rem;
    }
    
    .footer-links li,
    .footer-info li {
        margin-bottom: 3px;
    }
    
    .footer-social {
        align-items: flex-start;
        gap: 3px;
    }
    
    .footer-social-link {
        justify-content: flex-start;
        font-size: 0.75rem;
        padding: 3px;
    }
    
    .footer-social-link svg {
        width: 14px;
        height: 14px;
    }
    
    .footer-bottom {
        padding-top: var(--spacing-xs);
    }
    
    .footer-copyright {
        font-size: 0.7rem;
    }
    
    .floating-whatsapp {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
    
    .floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }
}

/* Melhorias para telas muito pequenas */
@media (max-width: 360px) {
    .hero {
        min-height: 280px;
        height: 40vh;
        max-height: 350px;
        margin-top: 60px;
    }
    
    .hero-logo img {
        max-width: 100px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .footer-logo img {
        max-width: 70px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 1.1rem;
    }
}

/* Animações suaves ao scroll */
.about-item,
.social-btn,
.info-card,
.pricing-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.about-item.visible,
.social-btn.visible,
.info-card.visible,
.pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
    .about-item,
    .social-btn,
    .info-card,
    .pricing-card {
        animation: fadeInUp 0.6s ease-out backwards;
    }
    
    .about-item:nth-child(1) { animation-delay: 0.1s; }
    .about-item:nth-child(2) { animation-delay: 0.2s; }
    .about-item:nth-child(3) { animation-delay: 0.3s; }
    
    .info-card:nth-child(1) { animation-delay: 0.1s; }
    .info-card:nth-child(2) { animation-delay: 0.2s; }
    
    .pricing-card:nth-child(1) { animation-delay: 0.1s; }
    .pricing-card:nth-child(2) { animation-delay: 0.2s; }
    .pricing-card:nth-child(3) { animation-delay: 0.3s; }
    .pricing-card:nth-child(4) { animation-delay: 0.4s; }
    
    .social-btn:nth-child(1) { animation-delay: 0.1s; }
    .social-btn:nth-child(2) { animation-delay: 0.2s; }
    .social-btn:nth-child(3) { animation-delay: 0.3s; }
}

/* Touch/swipe para mobile */
.carousel-track {
    touch-action: pan-y pinch-zoom;
}

