/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #8b4513;
    background-color: #fdf8f3;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    line-height: 1.3;
    color: #8b4513;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    color: #a0522d;
    line-height: 1.7;
    font-size: 1rem;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: inherit;
}

.btn-primary {
    background-color: #b85c3e;
    color: #f4e4c1;
}

.btn-primary:hover {
    background-color: #a0522d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 92, 62, 0.3);
}

.btn-outline {
    background: transparent;
    color: #8b4513;
    border: 2px solid #b85c3e;
}

.btn-outline:hover {
    background: #b85c3e;
    color: #f4e4c1;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 92, 62, 0.3);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* Header */
.header {
    background: #b85c3e;
    box-shadow: 0 2px 10px rgba(184, 92, 62, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    width: 3rem;
    height: 3rem;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-image-small {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: cover;
    border-radius: 50%;
}

.logo-text h1,
.logo-text h2 {
    font-size: 1.15rem;
    color: #f4e4c1;
    margin: 0;
    font-weight: 600;
}

.logo-text p {
    font-size: 0.8rem;
    color: rgba(244, 228, 193, 0.8);
    margin: 0;
}

/* Navigation */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-desktop a {
    color: #f4e4c1;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-desktop a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #f4e4c1;
    transition: width 0.3s ease;
}

.nav-desktop a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.nav-desktop a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #f4e4c1;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    color: #fff;
    transform: scale(1.1);
}

.nav-mobile {
    border-top: 1px solid rgba(244, 228, 193, 0.3);
    padding: 1rem 0;
    background: rgba(184, 92, 62, 0.95);
}

.nav-mobile a {
    display: block;
    color: #f4e4c1;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 1rem;
}

.nav-mobile a:hover {
    color: #fff;
    border-left-color: #f4e4c1;
    padding-left: 1.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f4e4c1 0%, #e6d3b7 100%);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    min-width: 100%;
    min-height: 100%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 92, 62, 0.6), rgba(244, 228, 193, 0.4));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #8b4513;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title-accent {
    display: block;
    color: #b85c3e;
    font-size: 0.9em;
}

.hero-description {
    font-size: 1.15rem;
    color: #a0522d;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #b85c3e;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #8b4513;
}

.section-header p {
    font-size: 1.05rem;
    color: #a0522d;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    background-color: #fff;
}

.mvv-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin: 4rem 0;
}

.mvv-card {
    background-color: #f4e4c1;
    border-radius: 0.75rem;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(184, 92, 62, 0.1);
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(184, 92, 62, 0.1);
}

.mvv-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.mvv-card:hover .mvv-icon {
    transform: scale(1.1) rotate(5deg);
    background-color: #b85c3e;
}

.mvv-card:hover .mvv-icon i {
    color: #fff;
}

.mvv-icon i {
    width: 1.75rem;
    height: 1.75rem;
    color: #b85c3e;
    transition: color 0.3s ease;
}

.mvv-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #8b4513;
}

.mvv-card p {
    color: #a0522d;
    line-height: 1.7;
}

/* Values Section */
.values-section {
    margin-top: 4rem;
    text-align: center;
}

.values-section h3 {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
    color: #8b4513;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.value-item {
    padding: 1.5rem;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
}

.value-item:hover {
    transform: translateY(-5px);
    background-color: rgba(244, 228, 193, 0.3);
}

.value-icon {
    width: 3rem;
    height: 3rem;
    background-color: #f4e4c1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background-color: #b85c3e;
    transform: scale(1.1);
}

.value-item:hover .value-icon i {
    color: #fff;
}

.value-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: #b85c3e;
    transition: color 0.3s ease;
}

.value-item h4 {
    font-size: 1rem;
    color: #8b4513;
    font-weight: 500;
}

/* Products Section */
.products {
    background-color: #f4e4c1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.product-card {
    background: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(184, 92, 62, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(184, 92, 62, 0.15);
}

.product-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #8b4513;
}

.product-content p {
    color: #a0522d;
    font-size: 0.95rem;
}

.product-options {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(184, 92, 62, 0.1);
}

.product-options label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.size-selector {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(184, 92, 62, 0.2);
    border-radius: 0.5rem;
    font-size: 0.9rem;
    background-color: #fff;
    color: #8b4513;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
}

.size-selector:focus {
    outline: none;
    border-color: #b85c3e;
    box-shadow: 0 0 0 3px rgba(184, 92, 62, 0.1);
}

.size-selector:hover {
    border-color: #b85c3e;
}

.product-price {
    text-align: center;
}

.price-display {
    font-size: 1.25rem;
    font-weight: 700;
    color: #b85c3e;
    background: linear-gradient(135deg, #f4e4c1, #e6d3b7);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    display: inline-block;
    min-width: 100px;
    transition: all 0.3s ease;
}

.product-card:hover .price-display {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(184, 92, 62, 0.2);
}

.products-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Contact Section */
.contact {
    background-color: #fff;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.contact-method {
    background: linear-gradient(135deg, #f4e4c1, #e6d3b7);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(184, 92, 62, 0.2);
    border-color: #b85c3e;
}

.whatsapp-method:hover {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.phone-method:hover {
    background: linear-gradient(135deg, #b85c3e, #a0522d);
    color: white;
}

.form-method:hover {
    background: linear-gradient(135deg, #8b4513, #654321);
    color: white;
}

.method-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-method:hover .method-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.method-icon i {
    width: 1.75rem;
    height: 1.75rem;
    color: #8b4513;
    transition: color 0.3s ease;
}

.contact-method:hover .method-icon i {
    color: white;
}

.method-content {
    flex: 1;
}

.method-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: #8b4513;
    transition: color 0.3s ease;
}

.contact-method:hover .method-content h3 {
    color: white;
}

.method-content p {
    color: #a0522d;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.contact-method:hover .method-content p {
    color: rgba(255, 255, 255, 0.9);
}

.method-action {
    font-size: 0.85rem;
    font-weight: 500;
    color: #b85c3e;
    transition: color 0.3s ease;
}

.contact-method:hover .method-action {
    color: rgba(255, 255, 255, 0.8);
}

.method-arrow {
    transition: transform 0.3s ease;
}

.contact-method:hover .method-arrow {
    transform: translateX(5px);
}

.method-arrow i {
    width: 1.25rem;
    height: 1.25rem;
    color: #b85c3e;
    transition: color 0.3s ease;
}

.contact-method:hover .method-arrow i {
    color: white;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-card {
    background: #f4e4c1;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(184, 92, 62, 0.1);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    width: 3rem;
    height: 3rem;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: #b85c3e;
}

.info-header h3 {
    font-size: 1.25rem;
    color: #8b4513;
    margin: 0;
}

.info-content p {
    color: #a0522d;
    margin-bottom: 0.5rem;
}

.location-actions {
    margin-top: 1rem;
}

.hours-list {
    margin-bottom: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(184, 92, 62, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    color: #8b4513;
}

.time {
    color: #a0522d;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 0.5rem;
}

.status-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: #25d366;
    animation: pulse 2s infinite;
}

.status-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: #8b4513;
}

/* Contact Form */
.contact-form-container {
    background: linear-gradient(135deg, #f4e4c1, #e6d3b7);
    border-radius: 1.5rem;
    padding: 3rem;
    margin-top: 2rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.75rem;
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #a0522d;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #8b4513;
    margin-bottom: 0.75rem;
}

.form-group label i {
    width: 1rem;
    height: 1rem;
    color: #b85c3e;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(184, 92, 62, 0.2);
    border-radius: 0.5rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background-color: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #b85c3e;
    box-shadow: 0 0 0 3px rgba(184, 92, 62, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

/* Footer */
.footer {
    background-color: #f4e4c1;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo .logo {
    display: flex;
    align-items: center;
}

.footer-logo .logo-text h2 {
    font-size: 1.25rem;
    margin: 0;
}

.footer-logo .logo-text p {
    font-size: 0.85rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #a0522d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #b85c3e;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e6d3b7;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #a0522d;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
}

.whatsapp-btn {
    width: 3.5rem;
    height: 3.5rem;
    background: #25d366;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    width: 1.75rem;
    height: 1.75rem;
    color: white;
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    .nav-desktop {
        display: none !important;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo-text {
        display: none;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .mvv-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2.5rem 0;
    }

    .mvv-card {
        padding: 1.75rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .value-item {
        padding: 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) {
    .nav-desktop {
        display: flex !important;
    }

    .mobile-menu-btn {
        display: none !important;
    }
}

@media (max-width: 480px) {
    section {
        padding: 3.5rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-button {
        bottom: 1rem;
        right: 1rem;
    }
}