    :root {
        --negro: #0a0a0a;
        --beige: #E6E0CE;
        --verde: #7A9B76;
        --blanco: #ffffff;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Montserrat', sans-serif;
        background: var(--negro);
        color: var(--blanco);
        line-height: 1.6;
    }

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

    .container-wide {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    /* HERO SECTION */
    .contact-hero {
        margin-top: 80px;
        padding: 13rem 2rem 6rem;
        background: linear-gradient(135deg, rgba(122, 155, 118, 0.1) 0%, rgba(10, 10, 10, 1) 100%);
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .contact-hero::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(122, 155, 118, 0.15) 0%, transparent 70%);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
    }

    .hero-title {
        font-size: clamp(3rem, 6vw, 5rem);
        font-weight: 800;
        background: linear-gradient(135deg, var(--beige) 0%, var(--verde) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1.4rem;
        color: rgba(255, 255, 255, 0.8);
        max-width: 700px;
        margin: 0 auto;
    }

    /* SOCIAL NETWORKS SECTION */
    .social-networks-section {
        padding: 6rem 2rem;
        background: var(--negro);
    }

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

    .section-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 700;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, var(--beige) 0%, var(--verde) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .section-subtitle {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .social-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        max-width: 1400px;
        margin: 0 auto;
    }

    .social-card {
        background: rgba(26, 26, 26, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 2.5rem 2rem;
        text-align: center;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        cursor: pointer;
    }

    .social-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .social-card:hover::before {
        transform: scaleX(1);
    }

    .social-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .social-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 20px;
        transition: all 0.3s ease;
    }

    .social-icon svg {
        width: 40px;
        height: 40px;
        transition: transform 0.3s ease;
    }

    .social-card:hover .social-icon svg {
        transform: scale(1.1) rotate(-5deg);
    }

    .social-title {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: var(--blanco);
    }

    .social-description {
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 1rem;
    }

    .social-stats {
        font-size: 0.9rem;
        color: var(--verde);
        font-weight: 600;
    }

    /* Colores específicos por red social */
    .whatsapp::before { background: #25D366; }
    .whatsapp .social-icon { background: rgba(37, 211, 102, 0.15); color: #25D366; }
    .whatsapp:hover { border-color: #25D366; }

    .instagram::before { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
    .instagram .social-icon { background: rgba(225, 48, 108, 0.15); color: #E1306C; }
    .instagram:hover { border-color: #E1306C; }

    .facebook::before { background: #1877F2; }
    .facebook .social-icon { background: rgba(24, 119, 242, 0.15); color: #1877F2; }
    .facebook:hover { border-color: #1877F2; }

    .youtube::before { background: #FF0000; }
    .youtube .social-icon { background: rgba(255, 0, 0, 0.15); color: #FF0000; }
    .youtube:hover { border-color: #FF0000; }

    .linkedin::before { background: #0A66C2; }
    .linkedin .social-icon { background: rgba(10, 102, 194, 0.15); color: #0A66C2; }
    .linkedin:hover { border-color: #0A66C2; }

    .tiktok::before { background: #000000; }
    .tiktok .social-icon { background: rgba(0, 0, 0, 0.15); color: #FFFFFF; }
    .tiktok:hover { border-color: #FFFFFF; }

    .telegram::before { background: #0088CC; }
    .telegram .social-icon { background: rgba(0, 136, 204, 0.15); color: #0088CC; }
    .telegram:hover { border-color: #0088CC; }

    .twitter::before { background: #000000; }
    .twitter .social-icon { background: rgba(255, 255, 255, 0.15); color: #FFFFFF; }
    .twitter:hover { border-color: #FFFFFF; }

    .email::before { background: var(--beige); }
    .email .social-icon { background: rgba(230, 224, 206, 0.15); color: var(--beige); }
    .email:hover { border-color: var(--beige); }

    .phone::before { background: var(--verde); }
    .phone .social-icon { background: rgba(122, 155, 118, 0.15); color: var(--verde); }
    .phone:hover { border-color: var(--verde); }

    .sms::before { background: #6C63FF; }
    .sms .social-icon { background: rgba(108, 99, 255, 0.15); color: #6C63FF; }
    .sms:hover { border-color: #6C63FF; }

    /* CONTACT FORM & MAP SECTION */
    .contact-form-section {
        padding: 6rem 2rem;
        background: linear-gradient(180deg, var(--negro) 0%, #1a1a1a 100%);
    }

    .contact-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }

    .form-container,
    .map-container {
        background: rgba(26, 26, 26, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 25px;
        padding: 3rem;
    }

    .form-title,
    .map-title {
        font-size: 2rem;
        font-weight: 700;
        color: var(--beige);
        margin-bottom: 1rem;
    }

    .form-subtitle,
    .map-subtitle {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 2rem;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

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

    .form-group label {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--beige);
        margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        background: linear-gradient(135deg, rgba(232, 220, 196, 0.05) 0%, rgba(122, 155, 118, 0.05) 100%);
        border: 2px solid rgba(232, 220, 196, 0.2);
        border-radius: 15px;
        padding: 1.2rem 1.5rem;
        color: var(--blanco);
        font-family: 'Montserrat', sans-serif;
        font-size: 1rem;
        transition: all 0.3s ease;
        box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .form-group select {
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23E8DCC4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 1rem center;
        background-size: 20px;
        padding-right: 3rem;
    }

    .form-group select option {
        background: #1A1A1A;
        color: var(--blanco);
        padding: 1rem;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--beige);
        background: linear-gradient(135deg, rgba(232, 220, 196, 0.1) 0%, rgba(122, 155, 118, 0.1) 100%);
        box-shadow: 0 5px 20px rgba(232, 220, 196, 0.2), inset 0 2px 5px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: rgba(255, 255, 255, 0.3);
    }

    .form-group.error input,
    .form-group.error select,
    .form-group.error textarea {
        border-color: #ff6b6b;
        background: rgba(255, 107, 107, 0.05);
    }

    .form-group .error-text {
        display: none;
        color: #ff6b6b;
        font-size: 0.85rem;
        margin-top: 0.5rem;
        font-weight: 500;
    }

    .form-group.error .error-text {
        display: block;
    }

    .form-group label .required {
        color: #ff6b6b;
        margin-left: 3px;
    }

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

    .checkbox-group {
        flex-direction: row;
        align-items: center;
    }

    .checkbox-label {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.8);
        cursor: pointer;
    }

    .checkbox-label input[type="checkbox"] {
        width: 20px;
        height: 20px;
        cursor: pointer;
        accent-color: var(--verde);
    }

    .checkbox-label a {
        color: var(--verde);
        text-decoration: underline;
    }

    .btn-submit {
        background: linear-gradient(135deg, var(--beige) 0%, #D4C5A8 100%);
        color: #1A1A1A;
        border: none;
        border-radius: 15px;
        padding: 1.3rem 3rem;
        font-size: 1.1rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        margin-top: 1rem;
        box-shadow: 0 10px 30px rgba(232, 220, 196, 0.3);
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        overflow: hidden;
    }

    .btn-submit::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(122, 155, 118, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .btn-submit:hover::before {
        width: 300px;
        height: 300px;
    }

    .btn-submit svg {
        width: 20px;
        height: 20px;
        stroke: #1A1A1A;
        position: relative;
        z-index: 1;
    }

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

    .btn-submit:hover:not(:disabled) {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(232, 220, 196, 0.5);
    }

    .btn-submit:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none !important;
    }

    .form-message {
        padding: 1rem;
        border-radius: 10px;
        text-align: center;
        font-weight: 600;
        display: none;
    }

    .form-message.success {
        background: rgba(122, 155, 118, 0.2);
        color: var(--verde);
        border: 1px solid var(--verde);
        display: block;
    }

    .form-message.error {
        background: rgba(255, 0, 0, 0.2);
        color: #ff4444;
        border: 1px solid #ff4444;
        display: block;
    }

    /* MAP */
    .map-wrapper {
        width: 100%;
        height: 400px;
        border-radius: 15px;
        overflow: hidden;
        margin-bottom: 2rem;
    }

    .location-info {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .info-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

    .info-item svg {
        width: 24px;
        height: 24px;
        stroke: var(--verde);
        flex-shrink: 0;
        margin-top: 0.25rem;
    }

    .info-item h4 {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--beige);
        margin-bottom: 0.25rem;
    }

    .info-item p {
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.7);
    }

    /* FOOTER */
    .footer {
        background: #1a1a1a;
        padding: 4rem 2rem 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .footer-title {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--beige);
        margin-bottom: 1rem;
    }

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

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-links a:hover {
        color: var(--verde);
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-bottom p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.9rem;
    }

    .footer-legal {
        display: flex;
        gap: 2rem;
    }

    .footer-legal a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

    .footer-legal a:hover {
        color: var(--verde);
    }

    /* ANIMATIONS */
    .fade-in {
        animation: fadeIn 1s ease-in;
    }

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

    /* RESPONSIVE */
    @media (max-width: 1024px) {
        .contact-layout {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .social-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
        
        .contact-hero {
            padding: 7rem 2rem 5rem;
        }
    }

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

        .contact-hero {
            padding: 6rem 1.5rem 4rem;
            margin-top: 70px;
        }
        
        .contact-hero h1 {
            font-size: clamp(2rem, 8vw, 3rem);
        }
        
        .contact-hero p {
            font-size: 1rem;
        }
        
        .contact-section {
            padding: 4rem 1.5rem;
        }

        .form-row {
            grid-template-columns: 1fr;
        }

        .social-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            padding: 0 1rem;
        }
        
        .social-card {
            padding: 1.5rem;
            min-height: 140px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        
        .social-icon {
            width: 50px;
            height: 50px;
            margin-bottom: 1rem;
        }
        
        .social-icon svg {
            width: 28px;
            height: 28px;
        }
        
        .social-card h3 {
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }
        
        .social-card p {
            font-size: 0.85rem;
            display: none;
        }
        
        .contact-info {
            padding: 2rem;
        }
        
        .info-item {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }

        .footer-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }
    }
    
    @media (max-width: 480px) {
        .contact-hero {
            padding: 5rem 1rem 3rem;
        }
        
        .contact-section {
            padding: 3rem 1rem;
        }
        
        .contact-form {
            padding: 2rem 1.5rem;
        }
        
        .form-group input,
        .form-group textarea {
            font-size: 14px;
        }
        
        .submit-btn {
            padding: 1rem 2rem;
            font-size: 1rem;
        }
        
        .social-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            padding: 0 0.5rem;
        }
        
        .social-card {
            padding: 1.2rem 0.8rem;
            min-height: 120px;
        }
        
        .social-icon {
            width: 45px;
            height: 45px;
            margin-bottom: 0.8rem;
        }
        
        .social-icon svg {
            width: 24px;
            height: 24px;
        }
        
        .social-card h3 {
            font-size: 0.9rem;
            margin-bottom: 0.3rem;
        }
        
        .social-card p {
            display: none;
        }
        
        .contact-info {
            padding: 1.5rem;
        }
    }


/* INSTAGRAM FEED SECTION */
.instagram-feed-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.instagram-feed-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(225, 48, 108, 0.08) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.instagram-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.instagram-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(225, 48, 108, 0.1);
    border-radius: 20px;
    animation: pulse 2s ease-in-out infinite;
}

.instagram-icon svg {
    width: 50px;
    height: 50px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(225, 48, 108, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 10px rgba(225, 48, 108, 0);
    }
}

.instagram-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.instagram-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.3);
}

.instagram-follow-btn svg {
    width: 24px;
    height: 24px;
}

.instagram-follow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(225, 48, 108, 0.4);
}

.instagram-feed-container {
    max-width: 900px;
    margin: 0 auto;
    min-height: 690px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 25px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    overflow: visible;
}

.snapwidget-widget {
    min-height: 690px;
    height: 690px;
    width: 100% !important;
    max-width: 765px;
    margin: 0 auto;
    display: block;
    aspect-ratio: 3 / 4;
}

.instagram-fallback {
    text-align: center;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.instagram-fallback p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.btn-instagram {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #f09433 0%, #bc1888 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(225, 48, 108, 0.3);
}

@media (max-width: 768px) {
    .instagram-feed-section {
        padding: 4rem 1.5rem;
    }

    .instagram-header {
        margin-bottom: 3rem;
    }

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

    .instagram-subtitle {
        font-size: 1.1rem;
    }

    .instagram-follow-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .instagram-feed-container {
        padding: 1rem;
    }
}
