/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2D2D2D;
    background-color: #FFF2D7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(249, 136, 102, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    height: 60px;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: #2D2D2D;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #F98866;
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #2D2D2D;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu-mobile {
    display: none;
    background: white;
    border-top: 1px solid #E5E7EB;
    padding: 20px;
}

.nav-link-mobile {
    display: block;
    color: #2D2D2D;
    text-decoration: none;
    padding: 10px 0;
    font-weight: 500;
}

.nav-link-mobile:hover {
    color: #F98866;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(249, 136, 102, 0.8) 0%, rgba(255, 242, 215, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 32px;
    animation: fadeIn 1s ease-in-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.gradient-text {
    background: linear-gradient(135deg, #F98866 0%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary {
    background: linear-gradient(135deg, #F98866 0%, #FF6B35 100%);
    border: none;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 136, 102, 0.3);
}

.btn-full {
    width: 100%;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: #F5F5F5;
}

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

.product-card {
    position: relative;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(249, 136, 102, 0.3);
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(249, 136, 102, 0.8) 0%, rgba(45, 45, 45, 0.6) 100%);
    z-index: 2;
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
    background: linear-gradient(135deg, rgba(249, 136, 102, 0.9) 0%, rgba(45, 45, 45, 0.7) 100%);
}

.product-content {
    position: relative;
    z-index: 3;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.product-icon {
    background: rgba(255, 255, 255, 0.2);
    padding: 16px;
    border-radius: 50%;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.product-icon i {
    font-size: 2rem;
    color: white;
}

.product-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 12px;
    color: white;
}

.product-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Services Section */
.services-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.services-section .video-background {
    opacity: 0.2;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(249, 136, 102, 0.1) 0%, rgba(255, 242, 215, 0.1) 100%);
    z-index: 1;
}

.section-content {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    animation: slideUp 0.8s ease-out;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 24px;
    color: #2D2D2D;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6B7280;
    max-width: 768px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #F98866;
    box-shadow: 0 20px 40px rgba(249, 136, 102, 0.2);
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.service-icon {
    background: rgba(249, 136, 102, 0.1);
    padding: 12px;
    border-radius: 8px;
    margin-right: 16px;
}

.service-icon i {
    font-size: 1.5rem;
    color: #F98866;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2D2D2D;
}

.service-description {
    color: #6B7280;
    line-height: 1.6;
}

/* About Section */
.about-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.about-section .video-background {
    opacity: 0.15;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(249, 136, 102, 0.1) 0%, rgba(255, 242, 215, 0.1) 100%);
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-text {
    animation: slideUp 0.8s ease-out;
}

.about-description {
    font-size: 1.125rem;
    color: #6B7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

.location-info {
    display: flex;
    align-items: center;
    color: #F98866;
    font-weight: 600;
}

.location-info i {
    margin-right: 8px;
}

.about-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 24px;
    text-align: center;
    color: #2D2D2D;
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

.benefit-dot {
    width: 8px;
    height: 8px;
    background: #F98866;
    border-radius: 50%;
    margin-right: 12px;
    margin-top: 6px;
    flex-shrink: 0;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #F5F5F5;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 24px;
    color: #2D2D2D;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-icon {
    background: rgba(249, 136, 102, 0.1);
    padding: 12px;
    border-radius: 8px;
    margin-right: 16px;
}

.contact-icon i {
    font-size: 1.5rem;
    color: #F98866;
}

.contact-label {
    font-weight: 600;
    color: #2D2D2D;
}

.contact-value {
    color: #6B7280;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(249, 136, 102, 0.2);
    padding: 32px;
    border-radius: 12px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: #2D2D2D;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F98866;
    box-shadow: 0 0 0 2px rgba(249, 136, 102, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: #2D2D2D;
    color: #FFF2D7;
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 16px;
}

.footer-description {
    color: rgba(255, 242, 215, 0.8);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #FFF2D7;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    color: rgba(255, 242, 215, 0.8);
    margin-bottom: 8px;
}

.footer-contact-info p {
    color: rgba(255, 242, 215, 0.8);
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 242, 215, 0.2);
    padding-top: 24px;
    text-align: center;
    color: rgba(255, 242, 215, 0.6);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

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

.whatsapp-float i {
    font-size: 1.8rem;
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu-mobile.active {
        display: block;
    }

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

    .hero-subtitle {
        font-size: 1.25rem;
    }

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

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

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
}

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

    .hero-content {
        padding: 16px;
    }

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

    .service-card,
    .product-card,
    .about-card,
    .contact-form-container {
        padding: 24px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-card {
        height: 250px;
    }
}

