/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--colorSecundario) 0%, var(--colorPrincipal) 100%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
    margin-top: 80px; /* Ajustar según altura del header */
}

.hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-flower,
.hero-leaf {
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.hero-flower {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.hero-leaf {
    bottom: 20%;
    left: 15%;
    animation-delay: 3s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: #f5eefc;
}

.section-title {
    color: var(--colorPrincipal);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.title-icon {
    background: linear-gradient(135deg, var(--colorPrincipal), var(--colorTerciario));
    color: white;
    padding: 0.5rem;
    border-radius: 10px;
    font-size: 1.2rem;
}

/* Contact Info */
.contact-info {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.contact-icon.phone {
    background: linear-gradient(135deg, #4caf50, #45a049);
}

.contact-icon.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-icon.location {
    background: linear-gradient(135deg, #ff5722, #e64a19);
}

.contact-details h4 {
    color: var(--colorPrincipal);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-details .horarios {
    font-style: italic;
    color: var(--colorTerciario);
    font-weight: 500;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    background: var(--colorPrincipal);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.contact-link:hover {
    background: var(--colorTerciario);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(124, 89, 165, 0.3);
    color: white;
}

.whatsapp-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.whatsapp-btn {
    background: #25d366 !important;
    font-size: 0.85rem;
}

.whatsapp-btn:hover {
    background: #128c7e !important;
}

/* Social Section */
.social-section {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

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

.social-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.social-card.tiktok {
    border-left-color: #000;
}

.social-card.tiktok:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.02));
}

.social-card.facebook {
    border-left-color: #1877f2;
}

.social-card.facebook:hover {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.05), rgba(24, 119, 242, 0.02));
}

.social-card.instagram {
    border-left-color: #e4405f;
}

.social-card.instagram:hover {
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.05), rgba(228, 64, 95, 0.02));
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.tiktok .social-icon {
    background: linear-gradient(135deg, #000, #333);
}

.facebook .social-icon {
    background: linear-gradient(135deg, #1877f2, #0d47a1);
}

.instagram .social-icon {
    background: linear-gradient(135deg, #e4405f, #c13584, #833ab4);
}

.social-info {
    flex: 1;
}

.social-info h4 {
    color: var(--colorPrincipal);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.social-info p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.social-link {
    color: var(--colorPrincipal);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--colorTerciario);
}

/* Map Section */
.map-section {
    padding: 0;
    background: #fff;
}

.map-container {
    position: relative;
}

.map-title {
    text-align: center;
    color: var(--colorPrincipal);
    font-size: 2.5rem;
    font-weight: 600;
    padding: 3rem 0 2rem;
    background: #f5eefc;
    margin: 0;
}

.map-wrapper {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.google-map {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.google-map:hover {
    filter: grayscale(0%);
}

.map-overlay {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    z-index: 10;
}

.map-info h3 {
    color: var(--colorPrincipal);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-info p {
    color: #666;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.map-info i {
    color: var(--colorTerciario);
    width: 16px;
}

.directions-btn {
    background: var(--colorPrincipal);
    color: white;
    text-decoration: none;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .contact-section {
        padding: 3rem 0;
    }

    .contact-info,
    .social-section {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .whatsapp-buttons {
        justify-content: center;
    }

    .floating-whatsapp {
        bottom: 1rem;
        right: 1rem;
    }

    .whatsapp-float {
        padding: 0.8rem 1rem;
    }

    .whatsapp-float:hover {
        max-width: 200px;
    }

    .map-overlay {
        position: relative;
        top: auto;
        left: auto;
        margin: 1rem;
        max-width: none;
    }

    .map-wrapper {
        height: 400px;
    }

    .section-title {
        font-size: 1.6rem;
        text-align: center;
        justify-content: center;
    }
}
