/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #2c5530;
    --secondary-color: #8b4513;
    --accent-color: #d4a574;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --white: #ffffff;
    --cream: #f8f6f3;
    --green-light: #d8fbef;
    --overlay-dark: rgba(44, 85, 48, 0.8);
    
    /* Typography */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 0 1rem;
    --border-radius: 8px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 1rem = 10px */
}

body {
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 120rem;
    margin: 0 auto;
    padding: var(--container-padding);
}

.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #6C1739, #8a1f4a);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(108, 23, 57, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 23, 57, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-divider {
    width: 6rem;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.8rem;
    color: var(--text-light);
    max-width: 60rem;
    margin: 0 auto;
}

.lead {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(108, 23, 57, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled {
    background: rgba(108, 23, 57, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
    padding: 0.5rem 0;
}

.nav-container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
}

.nav-logo-img {
    height: 4rem;
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
    filter: brightness(1.1) contrast(1.1);
}

.nav-logo-img:hover {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.2);
}

.nav-menu {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--white);
    position: relative;
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Experiencias Link Special Styling */
.nav-experience {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff6b35 100%);
    color: var(--white) !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.nav-experience:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: var(--white) !important;
}

.nav-experience::after {
    display: none;
}

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

.nav-toggle span {
    width: 2.5rem;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 60rem;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    transform: scale(1.02);
}

.hero-background img.active {
    opacity: 1;
    animation: heroZoom 12s ease-in-out infinite;
}

@keyframes heroZoom {
    0% {
        transform: scale(1.02);
    }
    50% {
        transform: scale(1.06);
    }
    100% {
        transform: scale(1.02);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 85, 48, 0.6);
    z-index: -1;
}

.hero-content {
    width: 100%;
    text-align: center;
    color: var(--white);
    z-index: 1;
    animation: heroContentFadeIn 1.5s ease-out;
}

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

.hero-logos {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem 3rem;
    border-radius: var(--border-radius);
}

.hero-logo-main {
    height: 12rem;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: var(--transition-smooth);
}

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

.hero-logo-corfo {
    height: 5rem;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
}

.hero-title {
    font-family: var(--font-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.title-subtitle {
    display: block;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 500;
    font-style: italic;
    color: var(--accent-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    max-width: 70rem;
    margin: 0 auto 3rem;
    line-height: 1.8;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2rem;
    height: 2rem;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 2rem;
}

.about-text h3 {
    color: #6C1739;
    margin: 2rem 0 1rem 0;
    font-family: var(--font-primary);
    font-size: 2.4rem;
    font-weight: 600;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(44, 85, 48, 0.1) 100%);
    z-index: 1;
}

/* ===== HISTORY SECTION ===== */
.history-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.history-text h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.history-text .section-divider {
    margin: 0 0 2rem 0;
}

.history-text p {
    margin-bottom: 2rem;
}

.wine-blend {
    background: var(--green-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
}

.wine-blend h3 {
    color: #6C1739;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.wine-blend ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 1rem;
}

.wine-blend li {
    background: var(--white);
    padding: 0.8rem 1.2rem;
    border-radius: 4px;
    font-weight: 500;
    color: #6C1739;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.history-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ===== LOCATION SECTION ===== */
.location {
    background: var(--cream);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.location-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.detail-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.detail-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.detail-item strong {
    color: #6C1739;
    display: block;
    margin-bottom: 0.5rem;
}

.grape-varieties {
    margin-top: 3rem;
}

.grape-varieties h3,
.grape-varieties h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.grape-varieties h4 {
    margin-top: 2rem;
    font-size: 1.6rem;
}

.varieties-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.variety {
    background: #6C1739;
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 1.4rem;
    font-weight: 500;
}

.location-map {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.location-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: var(--border-radius);
}

/* ===== WINES SECTION ===== */
.wines {
    background: var(--white);
}

.wines-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.wines-category {
    text-align: center;
}

.wines-category h3 {
    color: #6C1739;
    font-family: var(--font-primary);
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 3rem;
    position: relative;
}

.wines-category h3::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 2px;
    background: linear-gradient(90deg, #6C1739, var(--accent-color));
    border-radius: 1px;
}

.wines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.wine-item {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.wine-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #6C1739, var(--accent-color));
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.wine-item:hover::before {
    transform: scaleX(1);
}

.wine-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(108, 23, 57, 0.15);
    border-color: rgba(108, 23, 57, 0.1);
}

.wine-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: var(--transition-smooth);
}

.wine-item:hover .wine-icon {
    transform: scale(1.1);
}

.wine-item h4 {
    color: #6C1739;
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.wine-item p {
    color: var(--text-light);
    font-size: 1.5rem;
    line-height: 1.6;
    margin: 0;
}

.wine-subtitle {
    color: #6C1739;
    font-style: italic;
    font-size: 1.4rem;
    margin: 0.5rem 0;
}

.wine-details-btn {
    background: linear-gradient(135deg, #6C1739, #8a1f4a);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-size: 1.4rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wine-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 23, 57, 0.4);
}

/* ===== WINE MODAL ===== */
.wine-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.wine-modal-content {
    position: relative;
    background-color: var(--white);
    margin: 2% auto;
    padding: 0;
    width: 90%;
    max-width: 80rem;
    max-height: 90vh;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.wine-modal-close {
    position: absolute;
    right: 2rem;
    top: 2rem;
    color: #6C1739;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.wine-modal-close:hover {
    color: var(--white);
    background: #6C1739;
    transform: scale(1.1);
}

.wine-modal-body {
    max-height: 90vh;
    overflow-y: auto;
    padding: 4rem;
}

.wine-details {
    display: none;
}

.wine-details.active {
    display: block;
}

.wine-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(108, 23, 57, 0.1);
}

.wine-header h2 {
    color: #6C1739;
    font-family: var(--font-primary);
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.wine-header .wine-subtitle {
    color: var(--accent-color);
    font-size: 1.8rem;
    font-style: italic;
    margin: 0;
}

.wine-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--cream);
    border-radius: var(--border-radius);
    border-left: 4px solid #6C1739;
}

.spec-item {
    padding: 1rem;
    background: var(--white);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.spec-item strong {
    color: #6C1739;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wine-description h3 {
    color: #6C1739;
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(108, 23, 57, 0.2);
}

.wine-description h3:first-child {
    margin-top: 0;
}

.wine-description p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* ===== VIRTUAL TOUR SECTION ===== */
.virtual-tour {
    background: var(--cream);
}

.tour-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.tour-description h3 {
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.tour-description p {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.tour-features {
    list-style: none;
    margin: 2rem 0;
}

.tour-features li {
    padding: 1rem 0;
    padding-left: 3rem;
    position: relative;
    color: var(--text-dark);
    font-weight: 500;
}

.tour-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6C1739;
    font-weight: bold;
    font-size: 1.8rem;
}

.tour-btn {
    margin-top: 2rem;
    font-size: 1.6rem;
    padding: 1.5rem 3rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.tour-preview {
    position: relative;
}

.tour-iframe-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: var(--white);
}

.tour-iframe-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    transition: var(--transition-smooth);
}

.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 85, 48, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.tour-iframe-container:hover .tour-overlay {
    opacity: 1;
}

.tour-overlay-content {
    text-align: center;
    color: var(--white);
}

.tour-overlay-content h4 {
    font-family: var(--font-primary);
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.tour-overlay-content p {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.tour-icon {
    font-size: 4rem;
    display: block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* ===== GALLERY SECTION ===== */
.gallery {
    background: var(--white);
}

.gallery-container {
    width: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2rem;
    margin: 0;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
    aspect-ratio: 4/3;
    background: var(--cream);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(108, 23, 57, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(108, 23, 57, 0.9));
    color: var(--white);
    padding: 2rem;
    transform: translateY(100%);
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-end;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-info h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.gallery-info p {
    font-size: 1.4rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.4;
}

/* ===== GALLERY MODAL ===== */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: galleryModalFadeIn 0.3s ease-out;
}

@keyframes galleryModalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.gallery-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.gallery-modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--white);
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.gallery-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.gallery-modal-body {
    width: 100%;
    max-width: 90rem;
    height: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gallery-modal-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

#gallery-modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: galleryImageSlideIn 0.4s ease-out;
}

@keyframes galleryImageSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-modal-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem;
    text-align: center;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.gallery-modal-info h3 {
    font-family: var(--font-primary);
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.gallery-modal-info p {
    font-size: 1.6rem;
    opacity: 0.9;
    margin: 0;
}

.gallery-modal-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.gallery-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.gallery-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.gallery-counter {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-weight: 500;
    font-size: 1.6rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-counter span {
    font-weight: 600;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-info-single {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 2.4rem;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(108, 23, 57, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #6C1739;
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1.6rem;
    font-family: var(--font-secondary);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6C1739;
    box-shadow: 0 0 0 3px rgba(108, 23, 57, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 12rem;
}

/* ===== FOOTER ===== */
.footer {
    background: #6C1739;
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    background-color: #6C1739;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
}

.footer-logo-img {
    height: 6rem;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
    transition: var(--transition-fast);
}

.footer-logo-img:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.4rem;
    opacity: 0.8;
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-logo {
        padding: 0.3rem 0.8rem;
    }
    
    .nav-logo-img {
        height: 3.5rem;
    }
    
    .nav-experience {
        padding: 0.6rem 1.2rem !important;
        font-size: 1rem;
        margin: 0.5rem 0;
    }

    .hero-logos {
        padding: 1rem;
    }

    .hero-logo-main {
        height: 10rem;
    }

    .footer-logo {
        padding: 0.8rem 1.2rem;
    }

    .footer-logo-img {
        height: 5rem;
    }

    .wines-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .wine-item {
        padding: 2rem;
    }

    .wines-category h3 {
        font-size: 2.4rem;
    }

    .wine-modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 95vh;
    }

    .wine-modal-body {
        padding: 2rem;
    }

    .wine-header h2 {
        font-size: 2.8rem;
    }

    .wine-specs {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }

    .wine-description h3 {
        font-size: 1.8rem;
    }

    .wine-description p {
        font-size: 1.4rem;
    }

    .wine-modal-close {
        right: 1rem;
        top: 1rem;
        width: 3rem;
        height: 3rem;
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
        gap: 1.5rem;
    }

    .gallery-item {
        aspect-ratio: 3/2;
    }

    .gallery-overlay {
        padding: 1.5rem;
    }

    .gallery-info h3 {
        font-size: 1.6rem;
    }

    .gallery-info p {
        font-size: 1.2rem;
    }

    .gallery-modal-content {
        padding: 1rem;
    }

    .gallery-modal-close {
        top: 1rem;
        right: 1rem;
        width: 4rem;
        height: 4rem;
        font-size: 2.5rem;
    }

    .gallery-modal-info {
        padding: 1.5rem;
    }

    .gallery-modal-info h3 {
        font-size: 2rem;
    }

    .gallery-modal-info p {
        font-size: 1.4rem;
    }

    .gallery-modal-nav {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .gallery-nav-btn {
        width: 4rem;
        height: 4rem;
    }

    .gallery-counter {
        padding: 0.8rem 1.5rem;
        font-size: 1.4rem;
    }

    .nav-menu {
        position: fixed;
        top: 7rem;
        left: 0;
        width: 100%;
        height: calc(100vh - 7rem);
        background: rgba(108, 23, 57, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 5rem;
        transform: translateX(-100%);
        transition: var(--transition-smooth);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 30rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }

    .history-content {
        grid-template-columns: 1fr 1fr;
    }

    .history-image {
        order: -1;
    }

    .location-content {
        grid-template-columns: 1fr 1fr;
    }

    .tour-content {
        grid-template-columns: 1fr 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

/* ===== ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
    .section {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease-out;
    }

    .section.in-view {
        opacity: 1;
        transform: translateY(0);
    }

    .gallery-item {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease-out;
    }

    .gallery-item.in-view {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus {
    outline: 2px solid #6C1739;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --text-dark: #000000;
        --text-light: #000000;
    }
}

/* ===== PROMOTIONAL BANNER ===== */
.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-banner.show {
    opacity: 1;
    visibility: visible;
}

.promo-banner-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 800px;
    width: 95%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: scale(0.9) translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-banner.show .promo-banner-content {
    transform: scale(1) translateY(0);
}

.promo-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    font-size: 2.2rem;
    color: var(--text-dark);
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.promo-close-btn:hover {
    background: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Banner Header */
.promo-banner-header {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.promo-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.promo-banner-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.promo-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.85) 0%, rgba(139, 69, 19, 0.7) 100%);
}

.promo-banner-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    z-index: 2;
    padding: 2rem;
}

.promo-badge {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.promo-date-highlight {
    background: linear-gradient(135deg, #6C1739, #8a1f4a);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(108, 23, 57, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    0% { box-shadow: 0 6px 20px rgba(108, 23, 57, 0.5); }
    100% { box-shadow: 0 8px 30px rgba(108, 23, 57, 0.8), 0 0 20px rgba(255, 255, 255, 0.3); }
}

.promo-banner-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    line-height: 1.1;
}

.promo-banner-subtitle {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 1.5rem 0;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.promo-banner-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.highlight-separator {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Banner Body */
.promo-banner-body {
    padding: 2.5rem;
    background: var(--white);
}

.promo-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.promo-feature-card {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.05) 0%, rgba(212, 165, 116, 0.05) 100%);
    border-radius: 15px;
    border: 2px solid rgba(44, 85, 48, 0.1);
    transition: all 0.3s ease;
}

.promo-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(44, 85, 48, 0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.promo-feature-card h3 {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.promo-feature-card p {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
}

/* Banner CTA */
.promo-banner-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-promo-main {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(44, 85, 48, 0.4);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-promo-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-promo-main:hover::before {
    left: 100%;
}

.btn-promo-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(44, 85, 48, 0.5);
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.btn-promo-main:hover .btn-icon {
    transform: translateX(5px);
}

.btn-promo-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 1.5rem 3rem;
    border: 3px solid var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-promo-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 85, 48, 0.3);
}

/* Banner Footer */
.promo-banner-footer {
    background: linear-gradient(135deg, var(--green-light) 0%, rgba(212, 165, 116, 0.1) 100%);
    padding: 1.5rem 2.5rem;
    text-align: center;
    border-top: 1px solid rgba(44, 85, 48, 0.1);
}

.promo-timer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.timer-icon {
    font-size: 1.8rem;
    animation: tick 1s infinite;
}

@keyframes tick {
    0%, 50% { transform: scale(1); }
    25%, 75% { transform: scale(1.1); }
}

.timer-text {
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: 500;
}

#countdown {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 1.6rem;
}

/* Promo banner responsive */
@media (max-width: 768px) {
    .promo-banner-content {
        width: 95%;
        max-width: none;
    }
    
    .promo-banner-header {
        height: 200px;
    }
    
    .promo-banner-title {
        font-size: 2.2rem;
    }
    
    .promo-banner-subtitle {
        font-size: 1.3rem;
    }
    
    .promo-banner-highlight {
        gap: 0.5rem;
    }
    
    .highlight-text {
        font-size: 1.1rem;
    }
    
    .promo-banner-body {
        padding: 2rem 1.5rem;
    }
    
    .promo-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .promo-feature-card {
        padding: 1.2rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .promo-feature-card h3 {
        font-size: 1.4rem;
    }
    
    .promo-feature-card p {
        font-size: 1.2rem;
    }
    
    .promo-banner-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-promo-main,
    .btn-promo-secondary {
        width: 100%;
        text-align: center;
        padding: 1.3rem 2rem;
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .promo-banner-header {
        height: 180px;
    }
    
    .promo-banner-text {
        padding: 1.5rem;
    }
    
    .promo-badge {
        font-size: 1rem;
        padding: 0.4rem 1.2rem;
    }
    
    .promo-banner-title {
        font-size: 1.8rem;
    }
    
    .promo-banner-subtitle {
        font-size: 1.1rem;
    }
    
    .promo-banner-highlight {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .highlight-text {
        font-size: 1rem;
    }
    
    .highlight-separator {
        display: none;
    }
    
    .promo-banner-body {
        padding: 1.5rem 1rem;
    }
    
    .promo-feature-card {
        padding: 1rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .promo-feature-card h3 {
        font-size: 1.3rem;
    }
    
    .promo-feature-card p {
        font-size: 1.1rem;
    }
    
    .btn-promo-main,
    .btn-promo-secondary {
        padding: 1.1rem 1.5rem;
        font-size: 1.3rem;
    }
    
    .promo-banner-footer {
        padding: 1.2rem 1rem;
    }
    
    .timer-text {
        font-size: 1.2rem;
    }
    
    #countdown {
        font-size: 1.4rem;
    }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
    gap: 8px;
}

.whatsapp-float a:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.whatsapp-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

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

/* WhatsApp button responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float a {
        padding: 10px 14px;
        font-size: 13px;
        gap: 6px;
    }
    
    .whatsapp-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 10px;
        right: 10px;
    }
    
    .whatsapp-float a {
        padding: 8px 12px;
        font-size: 12px;
        gap: 4px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-icon {
        width: 18px;
        height: 18px;
    }
} 