/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3d2416;
    --secondary-color: #f5f1e8;
    --accent-color: #25D366;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

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

/* Header */
.header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #f4edde;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

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

.logo {
    max-width: 80px;
    height: auto;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.header-text {
    text-align: left;
}

.site-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: 1px;
    line-height: 1.2;
}

.site-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 300;
}

/* Section Titles */
.section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Main Content Section */
.main-content {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--secondary-color) 100%);
    flex: 1;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

/* Desktop: lado a lado */
@media (min-width: 1024px) {
    .content-grid {
        grid-template-columns: 2fr 3fr;
        gap: 40px;
    }
}

.contact-column,
.gallery-column {
    width: 100%;
}

.contact-card {
    background: var(--secondary-color);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: sticky;
    top: 100px;
}

.contact-method {
    margin-bottom: 40px;
}

.contact-method h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.cta-text {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 400;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    padding: 18px 35px;
    background: var(--accent-color);
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.whatsapp-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
    background: #20c75a;
}

.whatsapp-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.qr-section {
    margin-top: 50px;
}

.qr-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.6;
}

.qr-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    max-width: 220px;
    margin: 0 auto;
}

.qr-code {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Carousel */
.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.carousel-container {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
}

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

/* Carousel Buttons */
.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%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    box-shadow: var(--shadow);
}

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

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

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

.carousel-btn svg {
    color: var(--primary-color);
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

/* Image Description */
.image-description {
    padding: 25px 20px;
    text-align: center;
    border-radius: 0 0 20px 20px;
    margin-top: -5px;
}

.description-text {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.4;
    font-style: italic;
    transition: opacity 0.3s ease;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.footer-social {
    display: flex;
    justify-content: center;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.instagram-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.instagram-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.footer-text {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 60px 0;
    }

    .header {
        padding: 5px 0;
    }

    .header-content {
        flex-direction: column;
        gap: 2px;

    }

    .logo {
        max-width: 100px;
    }

    .site-title {
        font-size: 1.4rem;
        display: none;
    }

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

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .contact-card {
        padding: 35px 25px;
    }

    .whatsapp-link {
        font-size: 1.3rem;
        padding: 15px 30px;
    }

    .whatsapp-icon {
        width: 24px;
        height: 24px;
    }

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

    .carousel-slide img {
        height: 350px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

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

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

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

@media (max-width: 480px) {
    .main-content {
        padding: 40px 0;
    }

    .content-grid {
        gap: 30px;
    }

    .header {
        padding: 10px 0;
    }

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

    .header-text {
        text-align: center;
    }

    .site-title {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
        display: none;
    }

    .site-subtitle {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .contact-method h3 {
        font-size: 1.5rem;
    }

    .cta-text {
        font-size: 0.85rem;
    }

    .whatsapp-link {
        font-size: 1.1rem;
        padding: 14px 25px;
        gap: 10px;
    }

    .whatsapp-icon {
        width: 22px;
        height: 22px;
    }

    .carousel-slide img {
        height: 250px;
    }

    .qr-container {
        padding: 20px;
        max-width: 280px;
    }

    .footer {
        padding: 25px 0;
    }

    .footer-content {
        gap: 12px;
    }

    .instagram-link {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .instagram-icon {
        width: 20px;
        height: 20px;
    }

    .footer-text {
        font-size: 0.85rem;
    }

    .image-description {
        padding: 20px 15px;
    }

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