@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&display=swap');

/* Esto cortará CUALQUIER cosa que intente salirse por los lados en las secciones */
section, header, footer, .hero, #modals-container {
    overflow-x: hidden !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Si usas el truco de calc(-50vw + 50%), cámbialo por esto en los contenedores que lo usen */
.para-felinas-container, .footer {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

h1, h2, h3, h4, .hero-slogan, .nav-menu, .fundadora-link, .instagram-button, .solicitar-experiencia-btn  {
    font-family: 'Cinzel', serif;
}

:root {
    --primary-color: #ff29b1;
    --secondary-color: #ff22b2;
    --dark-color: #000;
    --light-color: #fff;
    --gray-color: #333;
    --light-gray: #666;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Añade o actualiza esto en tu CSS */
body.modal-open {
    overflow: hidden !important;
    padding-right: 0px;
    width: 100%;
}

/* IMPORTANTE: Asegúrate de que esto esté aplicado */
html, body {
    max-width: 100%;
    overflow-x: hidden !important;
    position: relative;
}

body {
    font-family: 'Century Schoolbook', 'Century', Georgia, 'Times New Roman', serif;
    background: var(--dark-color);
    color: var(--light-color);
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

/* Bloqueo de scroll cuando modal está abierto */
body.modal-open,
html.modal-open {
    overflow: hidden !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 150px;
    width: 100%;
    box-sizing: border-box;
}

/* Navegación */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: black;
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

#navbar.scrolled {
    box-shadow: 0 2px 20px rgba(233, 30, 99, 0.3);
    padding: 10px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    width: 100%;
}

.logo-container {
    width: 150px;
    height: 50px;
    flex-shrink: 0;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-menu a {
    color: var(--light-color);
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.nav-menu a::after {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--light-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #000 0%, #1a0a14 50%, #000 100%);
    overflow: hidden;
    width: 100%;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(233, 30, 99, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(233, 30, 99, 0.15) 0%, transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    animation: fadeInUp 1.2s ease;
    padding: 20px;
    max-width: 1200px;
    width: 100%;
}

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

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    animation: slideInLeft 1s ease;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-100px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-title .line {
    display: inline;
    margin-right: 20px;
}

.hero-title .accent {
    color: var(--primary-color);
    text-shadow: 0 0 40px rgba(233, 30, 99, 0.8);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 10px rgba(233, 30, 99, 0.5); }
    50% { text-shadow: 0 0 80px rgb(255, 35, 189); }
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: 30px;
    opacity: 0.9;
    letter-spacing: 2px;
    animation: fadeIn 1.5s ease;
}

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

.hero-tagline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    margin-bottom: 20px;
    flex-wrap: wrap;
    animation: slideInRight 1.2s ease;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(100px); }
    to { opacity: 1; transform: translateX(0); }
}

.separator {
    color: var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-slogan {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--primary-color);
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(233, 30, 99, 0.3);
    animation: fadeInUp 2s ease;
}

.hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: bounceIn 1.5s ease;
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { opacity: 1; transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    color: var(--light-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 16px;
}

.cta-primary {
    background: var(--primary-color);
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.3);
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-primary:hover::before {
    width: 300px;
    height: 300px;
}

.cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 40px rgba(233, 30, 99, 0.6);
}

.cta-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.2);
}

.cta-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 40px rgba(233, 30, 99, 0.6);
}

.instagram-icon {
    font-size: 1.2em;
    animation: rotate 2s ease-in-out infinite;
}

@keyframes rotate {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

/* Sections */
section {
    padding: 100px 0;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 60px;
    color: var(--light-color);
    position: relative;
    padding: 0 20px;
    animation: fadeInDown 0.8s ease;
}

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

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    margin: 20px auto 0;
    border-radius: 2px;
    animation: expandWidth 1s ease;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 100px; }
}

/* About Section */
.about {
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
    width: 100%;
}

.about .section-title {
    color: var(--dark-color);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.about-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    padding: 0;
    margin-bottom: 20px;
    color: var(--gray-color);
}

.about-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Servicios */
.servicio-card {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 350px;
}

.servicio-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.85) 100%);
    transition: all 0.4s ease;
    z-index: 1;
}

.servicio-card:hover .servicio-overlay-gradient {
    background: linear-gradient(to bottom, rgba(233, 30, 99, 0.1) 0%, rgba(233, 30, 99, 0.4) 40%, rgba(0, 0, 0, 0.9) 100%);
}

.servicio-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.servicio-card h3 {
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 12px;
}

.servicio-card p {
    color: #ffffff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 15px;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 50px;
    padding: 0 20px;
}

.ver-mas-button {
    background: transparent;
    border: none;
    color: white;
    font-size: 14px;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    margin-top: 10px;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.ver-mas-button:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

/* Experiencias */
.experiencias {
    background: linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%);
    width: 100%;
    padding-bottom: 40px;
    margin-bottom: 0;
}

.experiencias .section-title {
    color: var(--dark-color);
}

.experiencias-content {
    max-width: 900px;
    margin: 0 auto;
    padding:0 100px 100px;
}

.experiencia-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(233, 30, 99, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.4s ease;
    position: relative;
}

.experiencia-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    width: 4px;
    background: var(--secondary-color);
    transition: height 0.4s ease;
}

.experiencia-item:hover::before {
    height: 100%;
}

.experiencia-item:hover {
    transform: translateX(10px);
    box-shadow: -10px 10px 30px rgba(233, 30, 99, 0.2);
    background: rgba(233, 30, 99, 0.1);
}

.experiencia-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    min-width: 60px;
    transition: all 0.3s ease;
}

.experiencia-item:hover .experiencia-number {
    opacity: 0.6;
    transform: scale(1.2);
}

.experiencia-item h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin-bottom: 10px;
    color: var(--primary-color);
}

.experiencia-item p {
    color: var(--gray-color);
    line-height: 1.6;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.trabajo {
    background: #000;
    width: 100%;
    padding: 80px 0;
    margin-top: 0;
}

.trabajo .section-title {
    color: var(--light-color);
}

.trabajo-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    padding: 0;
    gap: 60px;
    margin-top: 50px;
    align-items: center;
}

.trabajo-info h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    color: var(--primary-color);
}

.trabajo-info > p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--light-color);
    opacity: 0.9;
}

.trabajo-benefits {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(233, 30, 99, 0.15);
    border-radius: 12px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(233, 30, 99, 0.3);
}

.benefit-item:hover {
    transform: translateX(10px);
    background: rgba(233, 30, 99, 0.25);
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.5);
}

.benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 8px;
    color: var(--primary-color);
}

.benefit-item p {
    color: var(--light-color);
    opacity: 0.85;
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.6;
}

.instagram-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--primary-color);
    box-shadow: 
        0 10px 40px rgba(233, 30, 99, 0.4),
        0 5px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.instagram-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 15px 50px rgba(233, 30, 99, 0.6),
        0 10px 30px rgba(0, 0, 0, 0.7);
}

.instagram-card h3 {
    font-size: clamp(1.8rem, 4vw, 2.3rem);
    margin-bottom: 20px;
    color: var(--primary-color);
}

.instagram-card > p {
    color: var(--light-color);
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 35px;
    font-size: clamp(1rem, 2vw, 1.15rem);
}

.instagram-button {
    display: inline-block;
    padding: 18px 50px;
    background: var(--primary-color);
    color: var(--light-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    position: relative;
    overflow: hidden;
}

.instagram-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.instagram-button:hover::before {
    width: 400px;
    height: 400px;
}

.instagram-button:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.5);
}

.instagram-handle {
    margin-top: 25px;
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: var(--primary-color);
    font-weight: 600;
    opacity: 0.8;
}

/* Galería */
.galeria {
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
    width: 100%;
}

.galeria .section-title {
    color: var(--light-color);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
    padding: 0 20px;
    width: 100%;
}

.galeria-item {
    display: inline-block;
    margin: 10px;
}

.galeria-placeholder {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 8px;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.galeria-placeholder:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.4);
}

.galeria-placeholder span {
    color: var(--light-color);
    font-size: inherit;
    font-weight: inherit;
}

/* Footer */
.footer {
    background: #000;
    padding: 40px 0 0;
    border-top: 1px solid rgba(233, 30, 99, 0.2);
    width: 100%;
    margin-left: 0;
    position: relative;
    box-sizing: border-box; 
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 0 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-logo-img {
    width: 100px;
    height: auto;
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 0 15px rgba(233, 30, 99, 0.8));
}

.footer-logo-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-logo p {
    font-style: italic;
    opacity: 0.7;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.footer-contact {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.85;
    font-style: normal;
    color: white !important;
}

.footer-contact a {
    color: white !important;
    text-decoration: none;
}

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

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: clamp(0.9rem, 2vw, 1rem);
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    color: var(--light-color) !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.whatsapp-link::after {
    display: none;
}

.whatsapp-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.5);
}

.whatsapp-link svg {
    transition: transform 0.3s ease;
    fill: white !important;
}

.whatsapp-link:hover svg {
    transform: scale(1.1);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.5;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

/* Animaciones */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s ease;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.8s ease;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.7) rotate(-5deg);
    transition: all 0.8s ease;
}

.zoom-in.visible {
    opacity: 1;
    transform: scale(1) rotate(0);
}

/* Fundadora Link */
.fundadora-link-container {
    text-align: center;
    margin-top: 40px;
}

.fundadora-link {
    background: transparent;
    border: none;
    color: var(--gray-color);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    padding-bottom: 8px;
    transition: all 0.3s ease;
}

.fundadora-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.fundadora-link:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.fundadora-link:hover::after {
    box-shadow: 0 3px 10px rgba(233, 30, 99, 0.5);
}

/* Modal - Desktop pequeño, Móvil grande */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
    overflow-x: hidden !important;
}

.modal.show {
    display: block;
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    margin: 5% auto;
    padding: 0;
    width: 70%;
    max-width: 550px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(233, 30, 99, 0.3);
    animation: slideDown 0.4s ease;
    overflow-x: hidden !important;
}

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

.close-modal {
    position: absolute;
    right: 25px;
    top: 15px;
    color: var(--gray-color);
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    padding: 50px;
}

.founder-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-image img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

.founder-info h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 10px;
}

.founder-info h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--gray-color);
    margin-bottom: 25px;
    font-weight: 500;
}

.founder-info p {
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
}

.founder-social {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.founder-social a {
    color: var(--dark-color);
    text-decoration: none;
    padding: 10px 25px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.founder-social a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
    z-index: -1;
}

.founder-social a:hover::before {
    width: 300px;
    height: 300px;
}

.founder-social a:hover {
    color: var(--light-color);
    transform: translateY(-3px);
}

/* Modal Body Services */
.modal-body-services {
    padding: 40px 80px 80px;
    text-align: center;
}

.modal-body-services h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--primary-color);
    margin-bottom: 20px;
}

.modal-body-services p {
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.modal-body-services .solicitar-button {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--light-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
}

.modal-body-services .solicitar-button:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.5);
}

/* Listas */
.info-section {
    margin-top: 30px;
    text-align: left;
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 900px;

}

.info-section h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 18px;
}

.desplegable-item .desplegable-header h4{
    font-size: 18px;
}

.listas,
.faq-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
    
}

.listas li,
.faq-list li {
    color: var(--gray-color);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.listas li::before,
.faq-list li::before {
    content: '✮';
    color: var(--primary-color);
    font-size: 1em;
    position: absolute;
    left: 0;
    top: 0px;
}

/* Botón solicitar */
.btn-solicitar {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.btn-solicitar button,
.btn-solicitar a {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--light-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
}

.btn-solicitar button:hover,
.btn-solicitar a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.5);
}

/* Formularios - Desktop pequeño, Móvil grande */
.modal-form-large {
    max-width: 500px !important;
    width: 65% !important;
}

.felina-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(233, 30, 99, 0.2);
    border-radius: 8px;
    font-size: clamp(0.95rem, 2vw, 1rem);
    color: var(--gray-color);
    background: rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(233, 30, 99, 0.05);
}

.form-group select {
    cursor: pointer;
}

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

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 400;
    color: var(--gray-color);
    font-size: clamp(0.95rem, 2vw, 1rem);
    padding: 8px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.checkbox-label:hover {
    background: rgba(233, 30, 99, 0.05);
}

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

.checkbox-auth {
    background: rgba(233, 30, 99, 0.05);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(233, 30, 99, 0.2);
}

.checkbox-auth input[type="checkbox"] {
    min-width: 18px;
}

.form-group input[type="file"] {
    padding: 10px;
    border: 2px dashed rgba(233, 30, 99, 0.3);
    background: rgba(233, 30, 99, 0.02);
    cursor: pointer;
}

.form-group input[type="file"]:hover {
    border-color: var(--primary-color);
    background: rgba(233, 30, 99, 0.05);
}

.form-help {
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    color: var(--gray-color);
    margin-top: 5px;
    font-style: italic;
}

.form-help-small {
    font-size: clamp(0.8rem, 1.5vw, 0.85rem);
    color: var(--light-gray);
    margin-top: 5px;
}

.form-subtitle {
    color: var(--primary-color);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.6;
}

.solicitar-experiencia-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--light-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    margin-bottom: 50px;
}

.solicitar-experiencia-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.5);
}

/* FAQ */
.faq-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid rgba(233, 30, 99, 0.2);
}

.faq-title {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(233, 30, 99, 0.2);
    border-radius: 10px;
    overflow: hidden;
    background: rgb(255, 255, 255);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 3px 15px rgba(233, 30, 99, 0.15);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    font-weight: 600;
    color: var(--gray-color);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
    padding: 0 20px 20px 20px;
}

.faq-answer p {
    color: var(--gray-color);
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.faq-answer h4 {
    color: var(--primary-color);
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    margin-bottom: 15px;
}

.faq-answer strong {
    color: var(--primary-color);
}

/* Para Felinas */
.para-felinas-container {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 50px;
    background: #000000;
    box-sizing: border-box;
    overflow: hidden;
}

.para-felinas-btn {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--light-color);
    border: none;
    border-radius: 12px;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.3);
    font-family: 'Cinzel', serif;
}

.para-felinas-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    max-width: 1200px;
    margin: 0 auto;
}

.para-felinas-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.5);
}

.para-felinas-icon {
    font-size: 1.2rem;
    transition: transform 0.4s ease;
}

.para-felinas-container.active .para-felinas-icon {
    transform: rotate(180deg);
}

.para-felinas-container.active .para-felinas-content {
    max-height: 10000px;
}

.para-felinas-content .faq-section {
    margin-top: 30px;
    padding-top: 0;
    border-top: none;
}

/* Desplegables */
.desplegable-item {
    margin-top: 25px;
    margin-bottom: 15px;
}

.desplegable-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.desplegable-header h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
}

.desplegable-icon {
    font-size: 1rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.desplegable-item.active .desplegable-icon {
    transform: rotate(180deg);
}

.desplegable-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.desplegable-item.active .desplegable-content {
    max-height: 500px;
}

/* Responsive */
@media (max-width: 1024px) {
    section {
        padding: 80px 0;
    }
    
    .nav-container {
        padding: 0 20px;
    }
}

/* MÓVIL - Formularios anchos y cómodos */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 70%;
        height: 100vh;
        padding: 100px 40px 40px;
        transition: right 0.3s ease;
        gap: 30px;
    }

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

    .menu-toggle {
        display: flex;
    }

    section {
        padding: 60px 0;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        font-size: 14px;
        padding: 14px 30px;
    }
    
    .trabajo-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefit-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 15px;
    }

    .benefit-icon {
        font-size: 2rem;
    }
    
    .instagram-card {
        padding: 40px 25px;
    }

    .contacto-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-logo {
        flex-direction: column;
        align-items: center;
    }

    .galeria-grid {
        grid-template-columns: 1fr;
    }
    
    .servicios-grid {
        gap: 30px;
        grid-template-columns: 1fr;
    }
    
    .experiencia-item {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .experiencia-number {
        min-width: auto;
    }

    .experiencias {
        padding-bottom: 20px;
    }

    .experiencias-content{
        padding: 0;
    }
    
    .trabajo {
        padding: 20px 0 60px;
    }

    .modal-body {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 30px;
    }
    
    .founder-image img {
        width: 200px;
        height: 200px;
        max-width: 200px;
    }
    
    .close-modal {
        right: 15px;
        top: 10px;
        font-size: 30px;
    }

    /* MODAL MÁS ANCHO EN MÓVIL */
    .modal-content {
        width: 95% !important;
        max-width: 95% !important;
        margin: 2% auto;
    }
    
    .modal-form-large {
        width: 95% !important;
        max-width: 95% !important;
    }
    
    .modal-body-services {
        padding: 30px 25px;
    }

    /* Inputs más cómodos en móvil */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        padding: 14px;
    }

    /* Botones más grandes en móvil */
    .btn-solicitar button {
        padding: 16px 40px;
        font-size: 1rem;
    }

    .faq-question {
        padding: 15px;
        font-size: 1rem;
    }
    
    .faq-icon {
        font-size: 1.3rem;
    }

    .container {
        padding: 0 50px;
    }
}

/* TABLET - Intermedio */
@media (min-width: 769px) and (max-width: 1024px) {
    .modal-content {
        width: 80%;
        max-width: 600px;
    }
    
    .modal-form-large {
        width: 75% !important;
    }

    .experiencias-content {
        padding: 0 20px;
    }

    /* ARREGLO SECCIÓN TRABAJO EN TABLET */
    .trabajo-content {
        grid-template-columns: 1fr !important;
        gap: 40px;
        padding: 0 40px;
    }

    .benefit-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
    }

    .instagram-card {
        padding: 40px 30px;
    }

    .container {
        padding: 0 40px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .logo-container {
        width: 120px;
        height: 40px;
    }
    
    .container {
        padding: 0 15px;
    }

    .experiencias-content{
        padding: 0;
    }
}

/* KILL SCROLL HORIZONTAL */
*, *::before, *::after {
    max-width: 100% !important;
}