/* ===== Variables de Colores ===== */
:root {
    --primary-purple: #970066;
    --secondary-purple: #970066;
    --light-purple: #c084fc;
    --lighter-purple: #e9d5ff;
    --dark-purple: #6b21a8;
    --accent-pink: #ec4899;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --light-bg: #faf5ff;
}

/* ===== Reset y Estilos Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Quicksand', 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
    width: 100%;
    max-width: 100vw;
}

h1, h2, h3, h4 {
    font-family: 'Fredoka', 'Quicksand', cursive;
    font-weight: 600;
    line-height: 1.2;
}

/* ===== Header y Navegación ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.2);
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Navbar centrada para página principal */
.navbar.navbar-centered {
    justify-content: center;
}

.navbar.navbar-centered .nav-menu {
    margin: 0 auto;
}

.logo h1 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo h1:hover {
    transform: scale(1.05) rotate(-2deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

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

/* ===== Menú Hamburguesa ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--white);
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

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

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple), var(--accent-pink));
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "✨";
    position: absolute;
    font-size: 150px;
    opacity: 0.1;
    top: 10%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: "🦋";
    position: absolute;
    font-size: 120px;
    opacity: 0.1;
    bottom: 10%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

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

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    max-width: 1500px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.3));
}

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

.hero h2 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 400;
}

/* ===== Botones ===== */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Fredoka', sans-serif;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary-purple);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

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

/* ===== Secciones ===== */
.section {
    padding: 4rem 1.5rem;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.section-alt {
    background-color: var(--light-bg);
}

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

.section-title {
    text-align: center;
    font-size: 3rem;
    color: var(--primary-purple);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-pink));
    border-radius: 2px;
}

/* ===== Info Cards ===== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
}

.info-card {
    background: var(--white);
    padding: 1.5rem 1.2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    width: 100%;
    max-width: 100%;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(147, 51, 234, 0.2);
    border-color: var(--light-purple);
}

.info-card-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    display: block;
}

.info-card-link:hover h3 {
    color: var(--accent-pink);
}

.info-card .icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--primary-purple);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--text-light);
    font-size: 1rem;
}

/* ===== Pricing Cards ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
}

.pricing-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid var(--lighter-purple);
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.pricing-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(147, 51, 234, 0.25);
}

.pricing-card.featured {
    border: 3px solid var(--primary-purple);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-pink), var(--primary-purple));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(236, 72, 153, 0.3);
}

.pricing-card h3 {
    font-size: 1.8rem;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

.pricing-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: contain;
    margin: 10px 0;
    border-radius: 8px;
}

.pricing-card-full {
    background: var(--white);
    padding: 2rem 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.1);
    border: 2px solid var(--lighter-purple);
    max-width: 900px;
    margin: 2rem auto;
}

.pricing-card-full h3 {
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

.pricing-image-large {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: contain;
    margin: 1.5rem auto;
    border-radius: 12px;
    display: block;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-purple);
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-light);
}

.features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.features li {
    padding: 0.8rem 0;
    color: var(--text-dark);
    font-size: 1rem;
    border-bottom: 1px solid var(--lighter-purple);
}

.features li:last-child {
    border-bottom: none;
}

/* ===== Galería ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 15px 40px rgba(147, 51, 234, 0.3);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.gallery-placeholder span {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.gallery-placeholder p {
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* ===== Contacto ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info h3 {
    color: var(--primary-purple);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

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

.contact-item .icon {
    font-size: 2rem;
    min-width: 40px;
}

.contact-item strong {
    display: block;
    color: var(--primary-purple);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-item p {
    margin: 0;
    color: var(--text-dark);
}

/* ===== Formulario ===== */
.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--lighter-purple);
    border-radius: 10px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* ===== Footer ===== */
footer {
    background: linear-gradient(135deg, var(--dark-purple), var(--primary-purple));
    color: var(--white);
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

footer p {
    margin: 0.5rem 0;
}

/* ===== Responsive ===== */
/* Tablets grandes */
@media (max-width: 1024px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .hero h2 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.3rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

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

    .pricing-grid,
    .info-grid {
        gap: 1.5rem;
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .contact-wrapper {
        gap: 2rem;
    }
}

/* Tablets y móviles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .navbar {
        padding: 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        display: block;
        padding: 1.5rem;
        font-size: 1.3rem;
        border-radius: 0;
    }

    .hero {
        padding: 1.5rem;
        min-height: 90vh;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 0;
    }

    .info-card {
        padding: 1rem 0.8rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 0;
    }

    .pricing-card {
        padding: 1rem 0.8rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card:hover {
        transform: translateY(-5px);
    }

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

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

    .contact-form {
        padding: 2rem;
    }

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

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

/* Móviles */
@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 1rem;
        min-height: 70vh;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .section {
        padding: 2rem 0.8rem;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .section-title::after {
        width: 60px;
        height: 3px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        width: 100%;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .info-card {
        padding: 0.8rem 0.6rem;
        border-radius: 12px;
    }

    .info-card .icon {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }

    .info-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }

    .info-card p {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .pricing-card {
        padding: 0.8rem 0.6rem;
        border-radius: 12px;
    }

    .pricing-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .pricing-image {
        max-height: 120px;
        width: 80%;
        margin: 5px auto;
    }

    .price {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }

    .price span {
        font-size: 0.8rem;
    }

    .price-period {
        font-size: 0.8rem;
    }

    .features {
        margin: 0.5rem 0;
        padding: 0 0.5rem;
    }

    .features li {
        padding: 0.3rem 0;
        font-size: 0.8rem;
    }

    .badge {
        padding: 0.2rem 0.6rem;
        font-size: 0.65rem;
        top: -8px;
        right: 10px;
    }

    .gallery-item {
        height: 100px;
        border-radius: 10px;
    }

    .gallery-placeholder span {
        font-size: 2rem;
    }

    .gallery-placeholder p {
        font-size: 0.9rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form {
        padding: 1.2rem;
        border-radius: 15px;
    }

    .contact-form h3 {
        font-size: 1.3rem;
    }

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

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 0.95rem;
        border-radius: 8px;
    }

    .contact-info {
        padding: 1.2rem;
    }

    .contact-info h3 {
        font-size: 1.3rem;
    }

    .contact-info p {
        font-size: 0.9rem;
    }

    .contact-item {
        font-size: 0.9rem;
        gap: 0.8rem;
    }

    .contact-item .icon {
        font-size: 1.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
    }

    footer {
        padding: 1.5rem 1rem;
    }

    footer p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
}

/* Móviles muy pequeños */
@media (max-width: 360px) {
    .hero {
        min-height: 50vh;
        padding: 0.5rem;
    }

    .hero h2 {
        font-size: 1.3rem;
    }

    .hero p {
        font-size: 0.75rem;
    }

    .section {
        padding: 1rem 0.4rem;
    }

    .section-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .section-title::after {
        width: 40px;
        height: 2px;
    }

    .navbar {
        padding: 0.5rem;
    }

    .logo h1 {
        font-size: 1rem;
    }

    .container {
        padding: 0 0.3rem;
    }

    .info-grid {
        gap: 0.4rem;
    }

    .info-card {
        padding: 0.6rem 0.4rem;
        border-radius: 10px;
    }

    .info-card .icon {
        font-size: 1.5rem;
    }

    .info-card h3 {
        font-size: 0.85rem;
    }

    .info-card p {
        font-size: 0.7rem;
    }

    .pricing-grid {
        gap: 0.4rem;
    }

    .pricing-card {
        padding: 0.6rem 0.4rem;
        border-radius: 10px;
    }

    .pricing-card h3 {
        font-size: 0.9rem;
    }

    .pricing-image {
        max-height: 90px;
        width: 75%;
    }

    .price {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
    }

    .price span {
        font-size: 0.7rem;
    }

    .features {
        margin: 0.3rem 0;
        padding: 0 0.3rem;
    }

    .features li {
        font-size: 0.7rem;
        padding: 0.2rem 0;
    }

    .badge {
        padding: 0.15rem 0.4rem;
        font-size: 0.55rem;
        top: -6px;
        right: 8px;
    }

    .gallery-item {
        height: 80px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }

    .contact-form,
    .contact-info {
        padding: 0.6rem;
    }

    .inline-btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

/* Mensajes del formulario de contacto */
.mensaje-contacto {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
    animation: slideIn 0.3s ease;
    transition: opacity 0.3s ease;
}

.mensaje-success {
    background: linear-gradient(135deg, #dcfce7, #d1fae5);
    color: #16a34a;
    border-left: 5px solid #16a34a;
}

.mensaje-error {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #dc2626;
    border-left: 5px solid #dc2626;
}

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

/* Modal de contacto */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
}

.modal-content-contacto {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content-contacto {
    transform: scale(1);
}

.modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    margin: 0 auto 20px;
    animation: iconPop 0.5s ease;
}

.modal-icon-success {
    background: linear-gradient(135deg, #dcfce7, #d1fae5);
    color: #16a34a;
    border: 3px solid #16a34a;
}

.modal-icon-error {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #dc2626;
    border: 3px solid #dc2626;
}

.modal-content-contacto h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.modal-success h2 {
    color: #16a34a;
}

.modal-error h2 {
    color: #dc2626;
}

.modal-mensaje {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

.modal-btn-cerrar {
    background: linear-gradient(135deg, #970066, #ec4899);
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.modal-btn-cerrar:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(151, 0, 102, 0.3);
}

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

/* ===== Scroll Margin para secciones con ID ===== */
#exclusividad,
#local-adaptado,
#equipamiento,
#cocina,
#informacion,
#horarios,
#galeria,
#contacto {
    scroll-margin-top: 100px;
}
