/* ==========================================================================
   VARIABLES Y FUENTES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

:root {
    /* Paleta de colores - Rosa Mexicano */
    --magenta: #d90076;
    --magenta-dark: #b3005f;
    --black: #000000;
    --white: #ffffff;
    --light-pink: #fdf5f8;
    --gray-light: #f5f5f5;
    --gray-text: #666666;
    
    /* Tipografía */
    --font-main: 'Chakra Petch', sans-serif;
    
    /* Diseño Neobrutalista */
    --border-thick: 3px;
    --shadow-offset: 6px;
    --shadow-offset-btn: 4px;
    --radius-large: 16px;
    --radius-medium: 12px;
    --radius-small: 8px;
    
    /* Espaciado */
    --section-padding: 80px 20px;
}

/* ==========================================================================
   RESET Y ESTILOS BASE
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-main);
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ==========================================================================
   CLASES DE UTILIDAD
   ========================================================================== */
.text-magenta { color: var(--magenta); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.bg-magenta { background-color: var(--magenta); }

/* ==========================================================================
   COMPONENTES (Botones y Tarjetas)
   ========================================================================== */
.btn--primary {
    background-color: var(--magenta);
    color: var(--white);
    padding: 12px 28px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    border: var(--border-thick) solid var(--black);
    box-shadow: var(--shadow-offset-btn) var(--shadow-offset-btn) 0 var(--black);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    position: relative;
    cursor: pointer;
}

.btn--primary:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--black);
    background-color: var(--magenta-dark);
}

.btn--primary:active {
    transform: translate(4px, 4px);
    box-shadow: 0 0 0 var(--black);
}

.btn--primary i {
    font-size: 1.1rem;
}

.brutalist-card {
    background-color: var(--white);
    border: var(--border-thick) solid var(--black);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--black);
    padding: 30px;
}

/* ==========================================================================
   HEADER (Navegación) - Sin botón CTA
   ========================================================================== */
.header {
    background-color: var(--white);
    border-bottom: var(--border-thick) solid var(--black);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.header__logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
}

.header__logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--black);
}

.header__menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

.header__menu a {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.header__menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--magenta);
    transition: width 0.3s ease;
}

.header__menu a:hover {
    color: var(--magenta);
}

.header__menu a:hover::after {
    width: 100%;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
    .header__container {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .header__menu {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .header__menu a {
        font-size: 0.75rem;
    }
}

/* ==========================================================================
   SECCIÓN HERO
   ========================================================================== */
.hero {
    background-image: radial-gradient(#e0e0e0 2px, transparent 2px);
    background-size: 30px 30px;
    padding: 80px 20px 120px;
    position: relative;
    overflow: hidden;
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero__title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero__description {
    font-size: 1.1rem;
    font-weight: 500;
    max-width: 90%;
    margin-bottom: 30px;
    color: #333;
}

.hero__buttons {
    margin-bottom: 30px;
}

.hero__trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero__trust span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
}

.hero__trust i {
    color: var(--magenta);
    font-size: 1.1rem;
}

.hero__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.hero__image {
    position: relative;
    z-index: 2;
    border: var(--border-thick) solid var(--black);
    border-radius: var(--radius-large);
    width: 100%;
    height: auto;
}

.hero__image-shadow {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background-color: var(--magenta);
    border-radius: var(--radius-large);
    z-index: 1;
}

/* ==========================================================================
   SECCIÓN NOSOTROS
   ========================================================================== */
.about {
    background-color: var(--light-pink);
    padding: var(--section-padding);
    border-bottom: var(--border-thick) solid var(--black);
    border-top: var(--border-thick) solid var(--black);
}

.about__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about__image-wrapper {
    display: flex;
    justify-content: center;
}

.about__logo {
    border-radius: 50%;
    border: var(--border-thick) solid var(--black);
    box-shadow: 8px 8px 0 var(--black);
    width: 100%;
    max-width: 400px;
    background-color: var(--magenta);
}

.about__title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about__text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 500;
    color: #333;
}

.about__text strong {
    color: var(--magenta);
}

/* ==========================================================================
   SECCIÓN SERVICIOS
   ========================================================================== */
.services {
    padding: var(--section-padding);
    background-color: var(--white);
}

.services__container {
    max-width: 1200px;
    margin: 0 auto;
}

.services__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card__image-container {
    position: relative;
    border: 2px solid var(--black);
    border-radius: var(--radius-small);
    overflow: hidden;
    margin-bottom: 20px;
    height: 200px;
}

.service-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card__content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card__title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card__text {
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 20px;
    flex: 1;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--magenta);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-top: auto;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card__link:hover {
    color: var(--magenta-dark);
    transform: translateX(5px);
}

/* ==========================================================================
   SECCIÓN ZONAS DE SERVICIO
   ========================================================================== */
.zones {
    padding: var(--section-padding);
    background-color: var(--light-pink);
    border-top: var(--border-thick) solid var(--black);
    border-bottom: var(--border-thick) solid var(--black);
}

.zones__container {
    max-width: 1200px;
    margin: 0 auto;
}

.zones__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.zones__subtitle {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 50px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.zones__subtitle i {
    color: var(--magenta);
    font-size: 1.5rem;
}

.zones__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.zone-card {
    background-color: var(--white);
    border: var(--border-thick) solid var(--black);
    border-radius: var(--radius-medium);
    padding: 40px 20px;
    text-align: center;
    position: relative;
}

.zone-card i {
    font-size: 3rem;
    color: var(--magenta);
    margin-bottom: 15px;
    display: block;
}

.zone-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.zones__cta {
    margin-top: 20px;
}

/* Efecto sutil para indicar que hay más zonas */
.zone-card::after {
    content: '+';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--magenta);
    opacity: 0.5;
}

/* ==========================================================================
   SECCIÓN FILOSOFÍA (DIFERENCIADORES)
   ========================================================================== */
.features {
    padding: var(--section-padding);
    border-top: var(--border-thick) solid var(--black);
}

.features__container {
    max-width: 1200px;
    margin: 0 auto;
}

.features__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.feature-card__icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--magenta);
}

.feature-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card__text {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: var(--black);
    color: var(--white);
}

.footer__top-bar {
    height: 15px;
    width: 100%;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 20px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer__brand {
    text-align: center;
}

.footer__logo {
    width: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    border: 2px solid var(--magenta);
}

.footer__slogan {
    font-size: 0.95rem;
    max-width: 250px;
    margin: 0 auto;
    color: #cccccc;
    font-weight: 300;
}

.footer__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer__contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #cccccc;
    font-weight: 300;
}

.footer__contact-list a {
    transition: color 0.3s ease;
}

.footer__contact-list a:hover {
    color: var(--magenta);
}

.footer__social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    color: var(--black);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.social-icon:hover {
    background-color: var(--magenta);
    color: var(--white);
    border-color: var(--white);
}

.footer__copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
    font-weight: 300;
}

/* ==========================================================================
   DISEÑO RESPONSIVO (Móviles y Tablets)
   ========================================================================== */
@media (max-width: 992px) {
    .hero__title {
        font-size: 3rem;
    }
    
    .about__container {
        gap: 30px;
    }
    
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer__brand {
        grid-column: span 2;
    }
    
    .hero__container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .header__container {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .header__menu {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .header__menu a {
        font-size: 0.75rem;
    }

    .hero {
        padding: 60px 20px 80px;
    }
    
    .hero__container, 
    .about__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__description {
        margin: 0 auto 30px;
    }
    
    .hero__trust {
        justify-content: center;
    }
    
    .hero__buttons {
        display: flex;
        justify-content: center;
    }

    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__image-wrapper {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .about__logo {
        max-width: 250px;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .zones__grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer__brand {
        grid-column: span 1;
    }

    .footer__contact-list li {
        justify-content: center;
    }

    .footer__social-links {
        justify-content: center;
    }
    
    .footer__slogan {
        margin: 0 auto;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 15px;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__description {
        font-size: 1rem;
    }
    
    .about__title {
        font-size: 2rem;
    }
    
    .services__title,
    .zones__title,
    .features__title {
        font-size: 2rem;
    }
    
    .header__logo a {
        font-size: 1rem;
    }
    
    .header__logo-img {
        width: 30px;
        height: 30px;
    }
    
    .btn--primary {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .hero__trust {
        gap: 10px;
        font-size: 0.8rem;
    }
    
    .zone-card {
        padding: 20px 15px;
    }
    
    .zone-card i {
        font-size: 2rem;
    }
    
    .zone-card h3 {
        font-size: 1rem;
    }
}

/* ==========================================================================
   ACCESIBILIDAD
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ==========================================================================
   IMPRESIÓN
   ========================================================================== */
@media print {
    .header,
    .whatsapp-float,
    .footer,
    .btn--primary {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero,
    .about,
    .services,
    .zones,
    .features {
        padding: 20px;
        border: none;
    }
}