* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

/* Header Moderno */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(27, 38, 54, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
}

.logo {
    height: 60px;
    width: auto;
    display: block;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: #E5E7EB;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary);
}

.btn-header {
    background: var(--whatsapp);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.btn-header:hover {
    background: var(--success);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 230, 92, 0.3);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(27, 38, 54, 0.98);
    backdrop-filter: blur(10px);
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    color: var(--white);
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.mobile-nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.mobile-nav-link:hover {
    color: var(--primary);
    padding-left: 10px;
}

.mobile-menu .btn-header {
    display: block;
    text-align: center;
    width: 100%;
}

/* Hero Section */
.hero {
    margin-top: 72px;
    min-height: calc(100vh - 72px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

/* Carrossel */
.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 3s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 40px 20px 120px;
    width: 100%;
}

.location-badge {
    background: var(--secondary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero h1 {
    font-size: clamp(32px, 6vw, 72px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
    color: var(--primary);
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: #E5E7EB;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--white);
}

.hero-service {
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.features-bar-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary);
    padding: 20px 0;
    z-index: 3;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
}

.feature-item span:first-child {
    font-size: 20px;
}

.feature-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
}

.btn-hero {
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    border: none;
}

.btn-hero-primary {
    background: #00E65C;
    color: var(--white);
}

.btn-hero-primary:hover {
    background: #00D054;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 230, 92, 0.4);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Container (compartilhado entre seções) */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* WhatsApp Section */
.whatsapp-section {
    background: var(--primary);
    padding: 80px 20px;
}

.whatsapp-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.whatsapp-3d {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.whatsapp-text {
    text-align: left;
}

.whatsapp-text h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.whatsapp-text p {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--white);
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-whatsapp-large {
    background: var(--whatsapp);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 230, 92, 0.4);
    cursor: pointer;
    border: none;
}

.btn-whatsapp-large:hover {
    background: var(--success);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 230, 92, 0.5);
}

/* Products Section */
.products {
    padding: 80px 20px;
    background: var(--light);
}

.products-grid {
    max-width: 1200px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--primary);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    min-height: 250px;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 140px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-icon {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.8);
}

.product-info {
    padding: 20px;
    color: var(--white);
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-name {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 8px;
}

.product-desc {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.4;
}

/* Section Header (compartilhado entre seções) */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 700;
    margin-bottom: 15px;
    color: #1F2937;
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
}

.section-title {
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #1F2937;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 20px;
    background: var(--white);
}

.about-main {
    max-width: 1200px;
    margin: 0 auto;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    /* Renomeado de about-text para about-content para consistência */
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content h3 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-content p {
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 30px;
}

.about-features {
    list-style: none;
    margin-bottom: 30px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: clamp(14px, 1.5vw, 16px);
    color: var(--dark);
}

.about-features li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.btn-about {
    background: var(--primary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-about:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Gallery Section */
.gallery {
    padding: 80px 20px;
    background: var(--light);
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Features Section */
.features {
    padding: 80px 20px;
    background: var(--light);
}

.features .section-title {
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #1F2937;
}

.features-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    text-align: center;
    background: var(--secondary);
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    margin: 0 auto 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .features {
        padding: 60px 16px;
    }
    
    .features-grid {
        gap: 30px;
    }
}

/* Testimonials */
.testimonials {
    padding: 80px 20px;
    background: var(--white);
}

.testimonials h2 {
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1F2937;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #FFC107;
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #6B7280;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author strong {
    font-size: 15px;
    font-weight: 600;
    color: #1F2937;
    display: block;
    margin-bottom: 4px;
}

.testimonial-author p {
    font-size: 13px;
    color: var(--gray);
}

/* Partners */
.partners {
    padding: 80px 20px 60px;
    background: var(--light);
    overflow: hidden;
}

.partners h2 {
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #1F2937;
}

.partners-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 50px;
}

.partners-slider {
    overflow: hidden;
}

.partners-track {
    display: flex;
    gap: 60px;
    animation: slide 45s linear infinite;
    align-items: center;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
    flex-shrink: 0;
}

.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

/* Location Section */
.location {
    padding: 80px 20px;
    background: var(--white);
}

.location h2 {
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1F2937;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--dark);
}

.location-details {
    list-style: none;
}

.location-details li {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
    color: var(--gray);
}

.location-details strong {
    color: var(--dark);
    display: block;
    margin-bottom: 5px;
}

.location-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* CTA Final */
.cta-final {
    background: var(--primary);
    padding: 80px 20px;
    text-align: center;
}

.cta-final h2 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-final p {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--white);
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-final {
    background: var(--whatsapp);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(16px, 2vw, 18px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    border: none;
}

.btn-cta-final:hover {
    background: var(--success);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
}

.footer-info {
    padding: 60px 20px;
}

.footer-info-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.footer-info-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary);
}

.footer-info-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-info-item li {
    padding: 8px 0;
    font-size: 15px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-info-item li::before {
    content: '▸';
    color: var(--primary);
    font-weight: bold;
}

.footer-bottom {
    background: var(--dark);
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 14px;
    color: #9CA3AF;
    margin-bottom: 25px;
}

.footer-copyright {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 15px;
}

.footer-credits {
    font-size: 12px;
    color: var(--gray);
}

.footer-credits a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.footer-credits a:hover {
    text-decoration: underline;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    z-index: 999;
    transition: all 0.3s;
    animation: pulse 2s infinite;
    cursor: pointer;
    border: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.5);
    }
    100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    animation: none;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* Popup Modal */
.popup-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    padding: 20px;
    overflow-y: auto;
    align-items: center;
    justify-content: center;
}

.popup-modal.active {
    display: flex;
}

.popup-content {
    background: var(--dark);
    border-radius: 20px;
    width: 100%;
    max-width: 420px;
    position: relative;
    animation: slideUp 0.3s ease-out;
    padding: 30px;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border: none;
    background: transparent;
    color: #999;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.popup-logo {
    height: 80px;
    margin: 0 auto 20px;
    display: block;
}

.popup-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    text-align: center;
}

.popup-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    text-align: center;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.popup-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.popup-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--whatsapp);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #20BD5A;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-submit:disabled {
    background: var(--gray);
    cursor: not-allowed;
    transform: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 180px);
    }
}

@media (max-width: 768px) {
    /* Header Mobile */
    .header {
        padding: 10px 0;
    }
    
    .logo {
        height: 50px;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    /* Hero Mobile */
    .hero {
        margin-top: 60px;
        min-height: calc(100vh - 60px);
    }
    
    .hero-content {
        padding: 30px 16px 100px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
    }
    
    .features-bar-bottom {
        padding: 16px 0;
    }
    
    .features-container {
        flex-direction: column;
        gap: 16px;
    }
    
    .feature-item {
        font-size: 14px;
    }
    
    .feature-separator {
        display: none;
    }
    
    /* WhatsApp Section Mobile */
    .whatsapp-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .whatsapp-3d {
        width: 200px;
        margin: 0 auto;
    }
    
    .whatsapp-text {
        text-align: center;
    }
    
    /* Products Mobile */
    .products {
        padding: 60px 16px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .product-card {
        min-height: 200px;
    }
    
    .product-image {
        height: 100px;
    }
    
    .product-icon {
        font-size: 45px;
    }
    
    .product-info {
        padding: 15px 10px;
    }
    
    .product-name {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .product-desc {
        font-size: 11px;
        line-height: 1.3;
    }
    
    /* About Mobile */
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 150px);
        gap: 10px;
    }
    
    /* Location Mobile */
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    
    /* Partners Mobile */
    .partner-logo {
        height: 40px;
    }
    
    /* Footer Mobile */
    .footer-info {
        padding: 40px 16px;
    }
    
    .footer-info-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-info-item {
        padding: 25px 20px;
    }
    
    .footer-info-item h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .footer-info-item li {
        font-size: 14px;
    }
    
    /* WhatsApp Float Mobile */
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .btn-hero {
        font-size: 14px;
        padding: 12px 24px;
    }
    
    .product-card {
        min-height: 180px;
    }
    
    .product-image {
        height: 90px;
    }
    
    .product-icon {
        font-size: 40px;
    }
    
    .product-info {
        padding: 12px 8px;
    }
    
    .product-name {
        font-size: 12px;
        margin-bottom: 4px;
    }
    
    .product-desc {
        font-size: 10px;
        line-height: 1.2;
    }
    }
    
    .gallery-grid {
        gap: 8px;
    }
}

/* Print styles */
@media print {
    .header,
    .whatsapp-float,
    .popup-modal,
    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
}