/*
Theme Name: CunAmor Theme
Theme URI: https://cunamor.com
Author: CunAmor
Author URI: https://cunamor.com
Description: Tema personalizado para CunAmor - Curso Psicoprofiláctico y Acompañamiento Maternal. Diseñado con enfoque emotivo, funcional y optimizado para conversión.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cunamor
Tags: one-column, custom-colors, custom-menu, custom-logo, featured-images, full-width-template, theme-options, translation-ready

CunAmor - Prepárate para el amor de tu vida con seguridad y calma.
*/

/* ==========================================================================
   0. CSS RESET & BASE
   ========================================================================== */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gris-pizarra);
    background-color: var(--blanco-crema);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--terracota-suave);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--terracota-hover);
}

/* ==========================================================================
   1. TYPOGRAPHY
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gris-pizarra);
    margin-bottom: var(--space-sm);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: var(--space-sm);
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-lg {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
}

/* ==========================================================================
   2. LAYOUT CONTAINERS
   ========================================================================== */

.cunamor-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.cunamor-container--narrow {
    max-width: 800px;
}

.cunamor-container--wide {
    max-width: 1400px;
}

.cunamor-section {
    padding: var(--space-lg) 0;
}

.cunamor-section--large {
    padding: var(--space-xl) 0;
}

/* Grid System */
.cunamor-grid {
    display: grid;
    gap: var(--space-md);
}

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

.cunamor-grid--3 {
    grid-template-columns: repeat(1, 1fr);
}

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

@media (min-width: 768px) {
    .cunamor-grid--2 {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (min-width: 1024px) {
    .cunamor-grid--3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .cunamor-grid--4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Flexbox Utilities */
.cunamor-flex {
    display: flex;
    flex-wrap: wrap;
}

.cunamor-flex--center {
    justify-content: center;
    align-items: center;
}

.cunamor-flex--between {
    justify-content: space-between;
    align-items: center;
}

.cunamor-flex--column {
    flex-direction: column;
}

/* ==========================================================================
   3. BUTTONS
   ========================================================================== */

.cunamor-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-headings);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    min-height: 44px;
    min-width: 44px;
}

.cunamor-btn--primary {
    background: var(--gradient-cta);
    color: #ffffff;
    box-shadow: var(--shadow-soft);
}

.cunamor-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: #ffffff;
}

.cunamor-btn--secondary {
    background: transparent;
    color: var(--terracota-suave);
    border: 2px solid var(--terracota-suave);
}

.cunamor-btn--secondary:hover {
    background: var(--terracota-suave);
    color: #ffffff;
}

.cunamor-btn--ghost {
    background: rgba(255, 255, 255, 0.72);
    color: var(--gris-pizarra);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.cunamor-btn--ghost:hover {
    background: #ffffff;
    color: var(--terracota-suave);
}

/* Blog article rich content */
.cunamor-post-content {
    font-size: 1.0625rem;
    line-height: 1.85;
}

.cunamor-post-content .article-lead {
    color: rgba(51, 51, 51, 0.72);
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    font-style: italic;
    line-height: 1.65;
    margin-bottom: var(--space-md);
}

.cunamor-post-content h2 {
    margin-top: var(--space-lg);
}

.cunamor-post-content h2::before {
    background: var(--terracota-suave);
    content: '';
    display: block;
    height: 2px;
    margin-bottom: 0.875rem;
    width: 36px;
}

.cunamor-post-content .pull-quote,
.cunamor-post-content .science-box,
.cunamor-post-content .narrative-moment,
.cunamor-post-content .cta-card {
    border-radius: var(--radius-lg);
    margin: var(--space-lg) 0;
    padding: clamp(1.5rem, 4vw, 2.75rem);
}

.cunamor-post-content .pull-quote {
    background: var(--rosa-palo-light);
    border-left: 4px solid var(--terracota-suave);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.cunamor-post-content .pull-quote p,
.cunamor-post-content .highlight-text {
    color: var(--terracota-suave);
    font-family: var(--font-headings);
    font-size: clamp(1.2rem, 3vw, 1.55rem);
    font-style: italic;
    line-height: 1.45;
}

.cunamor-post-content .science-box {
    background: #ffffff;
    border: 1px solid rgba(122, 158, 142, 0.3);
}

.cunamor-post-content .science-label {
    color: var(--morado-raiz);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.cunamor-post-content .science-box p {
    color: rgba(51, 51, 51, 0.72);
    font-size: 0.98rem;
    margin-bottom: 0;
}

.cunamor-post-content .highlight-text {
    border-bottom: 1px solid var(--rosa-palo);
    border-top: 1px solid var(--rosa-palo);
    padding: 1.75rem 0;
    text-align: center;
}

.cunamor-post-content .narrative-moment {
    background: linear-gradient(135deg, var(--gris-pizarra) 0%, var(--marron-cacao) 100%);
}

.cunamor-post-content .narrative-moment p {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.cunamor-post-content .takeaway-list {
    list-style: none;
    margin: var(--space-md) 0;
    padding: 0;
}

.cunamor-post-content .takeaway-list li {
    display: flex;
    gap: 1rem;
    line-height: 1.65;
    margin-bottom: 1.125rem;
}

.cunamor-post-content .takeaway-list li::before {
    background: var(--terracota-suave);
    border-radius: 50%;
    content: '';
    flex: 0 0 8px;
    height: 8px;
    margin-top: 0.65rem;
}

.cunamor-post-content .divider {
    align-items: center;
    color: rgba(51, 51, 51, 0.72);
    display: flex;
    gap: 1.25rem;
    margin: var(--space-lg) 0;
    opacity: 0.5;
}

.cunamor-post-content .divider::before,
.cunamor-post-content .divider::after {
    background: currentColor;
    content: '';
    flex: 1;
    height: 1px;
}

.cunamor-post-content .cta-card {
    background: linear-gradient(135deg, var(--morado-raiz) 0%, var(--lavanda-humo) 100%);
    color: #ffffff;
    text-align: center;
}

.cunamor-post-content .cta-card h3,
.cunamor-post-content .cta-card p {
    color: #ffffff;
}

.cunamor-post-content .cta-btn {
    background: #ffffff;
    border-radius: var(--radius-full);
    color: var(--morado-raiz);
    display: inline-block;
    font-weight: 700;
    padding: 0.875rem 2rem;
}

.cunamor-btn--large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.cunamor-btn--small {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

.cunamor-btn--block {
    width: 100%;
}

/* Button Icon Animation */
.cunamor-btn svg,
.cunamor-btn .btn-icon {
    transition: transform 0.3s ease;
}

.cunamor-btn:hover svg,
.cunamor-btn:hover .btn-icon {
    transform: translateX(4px);
}

/* ==========================================================================
   4. CARDS
   ========================================================================== */

.cunamor-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: var(--space-md);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.cunamor-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.cunamor-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rosa-palo-light);
    border-radius: var(--radius-full);
    font-size: 2.5rem;
}

.cunamor-card__title {
    font-family: var(--font-headings);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    text-align: center;
}

.cunamor-card__text {
    color: var(--gris-pizarra);
    opacity: 0.8;
    text-align: center;
    margin-bottom: var(--space-sm);
}

.cunamor-card__image {
    margin: calc(var(--space-md) * -1);
    margin-bottom: var(--space-md);
}

.cunamor-card__image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Service Card Variant */
.cunamor-card--service {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
}

.cunamor-card--service .cunamor-card__icon {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ==========================================================================
   5. HEADER & NAVIGATION
   ========================================================================== */

.cunamor-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    transition: var(--transition-smooth);
}

.cunamor-header.is-scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.cunamor-header.is-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.cunamor-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.cunamor-logo {
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--terracota-suave);
}

.cunamor-logo img {
    max-height: 80px;
}

.cunamor-nav {
    display: none;
}

.cunamor-nav ul {
    display: flex;
    list-style: none;
    gap: var(--space-md);
}

.cunamor-nav a {
    font-family: var(--font-headings);
    font-weight: 600;
    color: var(--gris-pizarra);
    padding: 0.5rem;
    position: relative;
}

.cunamor-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracota-suave);
    transition: width 0.3s ease;
}

.cunamor-nav a:hover::after,
.cunamor-nav a.active::after {
    width: 100%;
}

.cunamor-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.cunamor-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gris-pizarra);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

@media (min-width: 768px) {
    .cunamor-nav {
        display: flex;
        align-items: center;
        gap: var(--space-md);
    }

    .cunamor-menu-toggle {
        display: none;
    }
}

/* Header Actions (Social, Cart, Login) */
.cunamor-header__actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

.cunamor-header__social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cunamor-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transition: var(--transition-smooth);
}

.cunamor-social-icon:hover {
    background: white;
    color: var(--terracota-suave);
    transform: translateY(-2px);
}

.cunamor-header__cart {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    transition: var(--transition-smooth);
}

.cunamor-header__cart:hover {
    background: white;
    color: var(--terracota-suave);
}

.cunamor-header__cart-label {
    font-family: var(--font-headings);
    font-size: 0.85rem;
    font-weight: 600;
}

.cunamor-header__login {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: white;
    font-family: var(--font-headings);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition-smooth);
}

.cunamor-header__login:hover {
    background: white;
    color: var(--terracota-suave);
    border-color: white;
}

/* Scrolled state - change colors */
.cunamor-header.is-scrolled .cunamor-social-icon {
    background: rgba(0, 0, 0, 0.05);
    color: var(--gris-pizarra);
}

.cunamor-header.is-scrolled .cunamor-social-icon:hover {
    background: var(--terracota-suave);
    color: white;
}

.cunamor-header.is-scrolled .cunamor-header__cart {
    background: rgba(0, 0, 0, 0.05);
    color: var(--gris-pizarra);
}

.cunamor-header.is-scrolled .cunamor-header__cart:hover {
    background: var(--terracota-suave);
    color: white;
}

.cunamor-header.is-scrolled .cunamor-header__login {
    color: var(--gris-pizarra);
    border-color: var(--gris-pizarra);
}

.cunamor-header.is-scrolled .cunamor-header__login:hover {
    background: var(--terracota-suave);
    color: white;
    border-color: var(--terracota-suave);
}

@media (min-width: 768px) {
    .cunamor-header__actions {
        display: flex;
    }
}

/* Mobile Menu */
.cunamor-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.cunamor-mobile-menu.is-active {
    opacity: 1;
    visibility: visible;
}

.cunamor-mobile-menu ul {
    list-style: none;
    text-align: center;
}

.cunamor-mobile-menu a {
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    padding: 1rem;
}

/* ==========================================================================
   6. HERO SECTION
   ========================================================================== */

.cunamor-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding: calc(80px + var(--space-lg)) var(--space-sm) var(--space-xl);
    overflow: hidden;
}

.cunamor-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.cunamor-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cunamor-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(250, 218, 221, 0.4) 0%,
            rgba(249, 228, 183, 0.35) 50%,
            rgba(217, 136, 128, 0.5) 100%);
}

.cunamor-hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.cunamor-hero__eyebrow,
.cunamor-section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    margin-bottom: var(--space-sm);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.78);
    color: var(--terracota-suave);
    font-family: var(--font-headings);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: var(--shadow-soft);
}

.cunamor-hero__title {
    color: var(--gris-pizarra);
    margin-bottom: var(--space-md);
    animation: fadeInUp 1s ease;
}

.cunamor-hero__subtitle {
    font-size: 1.25rem;
    color: var(--gris-pizarra);
    opacity: 0.9;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 1s ease 0.2s both;
}

.cunamor-hero__cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--space-md);
    animation: fadeInUp 1s ease 0.4s both;
}

.cunamor-hero__highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: var(--space-md);
}

.cunamor-highlight-pill {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.72);
    color: var(--gris-pizarra);
    font-weight: 700;
    box-shadow: var(--shadow-card);
}

.cunamor-hero__stats {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
    max-width: 720px;
    margin: 0 auto;
}

.cunamor-stat-card {
    display: grid;
    gap: 0.35rem;
    padding: 1.1rem 1.2rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-soft);
    text-align: left;
}

.cunamor-stat-card strong {
    font-family: var(--font-headings);
    font-size: 1.15rem;
    color: var(--terracota-suave);
}

.cunamor-stat-card span {
    color: var(--gris-pizarra);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   7. FORMS
   ========================================================================== */

.cunamor-form-group {
    margin-bottom: var(--space-sm);
}

.cunamor-label {
    display: block;
    font-family: var(--font-headings);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gris-pizarra);
}

.cunamor-input,
.cunamor-textarea,
.cunamor-select {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--gris-pizarra);
    background: #ffffff;
    border: 2px solid var(--rosa-palo);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.cunamor-input:focus,
.cunamor-textarea:focus,
.cunamor-select:focus {
    outline: none;
    border-color: var(--terracota-suave);
    box-shadow: 0 0 0 4px rgba(217, 136, 128, 0.15);
}

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

/* ==========================================================================
   8. TESTIMONIALS
   ========================================================================== */

.cunamor-testimonials {
    background: var(--rosa-palo-light);
    padding: var(--space-xl) 0;
}

.cunamor-testimonial {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow-soft);
}

.cunamor-testimonial__avatar {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    margin: 0 auto var(--space-sm);
    border: 4px solid var(--amarillo-mantequilla);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--terracota-light), var(--terracota-suave));
    color: #ffffff;
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: 800;
}

.cunamor-testimonial__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cunamor-testimonial__text {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--gris-pizarra);
    margin-bottom: var(--space-sm);
    line-height: 1.8;
}

.cunamor-testimonial__text::before {
    content: '"';
    font-size: 3rem;
    font-family: Georgia, serif;
    color: var(--terracota-suave);
    display: block;
    line-height: 1;
}

.cunamor-testimonial__author {
    font-family: var(--font-headings);
    font-weight: 700;
    color: var(--terracota-suave);
}

/* ==========================================================================
   9. FOOTER
   ========================================================================== */

.cunamor-footer {
    background: var(--gris-pizarra);
    color: #ffffff;
    padding: var(--space-xl) 0 var(--space-md);
}

.cunamor-footer a {
    color: var(--amarillo-mantequilla);
}

.cunamor-footer a:hover {
    color: #ffffff;
}

.cunamor-footer__grid {
    display: grid;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
    .cunamor-footer__grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.cunamor-footer__title {
    font-family: var(--font-headings);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: var(--space-sm);
}

.cunamor-footer__text {
    opacity: 0.8;
    line-height: 1.8;
}

.cunamor-footer__links {
    list-style: none;
}

.cunamor-footer__links li {
    margin-bottom: 0.5rem;
}

.cunamor-footer__copy {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.875rem;
}

/* ==========================================================================
   10. WHATSAPP BUTTON
   ========================================================================== */

.cunamor-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-bounce);
    animation: pulse 2s infinite;
}

.cunamor-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.cunamor-whatsapp svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 40px rgba(37, 211, 102, 0.6);
    }
}

/* ==========================================================================
   11. UTILITIES
   ========================================================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hidden {
    display: none !important;
}

.invisible {
    visibility: hidden;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: var(--space-xs);
}

.mt-2 {
    margin-top: var(--space-sm);
}

.mt-3 {
    margin-top: var(--space-md);
}

.mt-4 {
    margin-top: var(--space-lg);
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: var(--space-xs);
}

.mb-2 {
    margin-bottom: var(--space-sm);
}

.mb-3 {
    margin-bottom: var(--space-md);
}

.mb-4 {
    margin-bottom: var(--space-lg);
}

.pt-0 {
    padding-top: 0;
}

.pt-1 {
    padding-top: var(--space-xs);
}

.pt-2 {
    padding-top: var(--space-sm);
}

.pt-3 {
    padding-top: var(--space-md);
}

.pt-4 {
    padding-top: var(--space-lg);
}

.pb-0 {
    padding-bottom: 0;
}

.pb-1 {
    padding-bottom: var(--space-xs);
}

.pb-2 {
    padding-bottom: var(--space-sm);
}

.pb-3 {
    padding-bottom: var(--space-md);
}

.pb-4 {
    padding-bottom: var(--space-lg);
}

/* Background Colors */
.bg-rosa {
    background-color: var(--rosa-palo);
}

.bg-rosa-light {
    background-color: var(--rosa-palo-light);
}

.bg-amarillo {
    background-color: var(--amarillo-mantequilla);
}

.bg-white {
    background-color: #ffffff;
}

.bg-cream {
    background-color: var(--blanco-crema);
}

/* Text Colors */
.text-terracota {
    color: var(--terracota-suave);
}

.text-gris {
    color: var(--gris-pizarra);
}

.text-white {
    color: #ffffff;
}

.bg-gradient-soft {
    background:
        radial-gradient(circle at top left, rgba(250, 218, 221, 0.95), transparent 35%),
        radial-gradient(circle at bottom right, rgba(249, 228, 183, 0.9), transparent 38%),
        linear-gradient(135deg, #fffdf8 0%, #fff6f2 100%);
}

/* Homepage */
.cunamor-home-hook,
.cunamor-home-services,
.cunamor-home-about,
.cunamor-home-tracker {
    position: relative;
}

.cunamor-home-hook::before,
.cunamor-home-services::before {
    content: '';
    position: absolute;
    inset: auto auto 0 0;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(249, 228, 183, 0.35) 0%, transparent 70%);
    pointer-events: none;
}

.cunamor-home-about .cunamor-about__content {
    max-width: 560px;
}

.cunamor-home-about .cunamor-about__image img,
.cunamor-teaser-image__photo {
    width: 100%;
    border-radius: 28px;
    box-shadow: var(--shadow-hover);
    object-fit: cover;
}

.cunamor-teaser-image__photo {
    max-width: 460px;
    max-height: 320px;
    margin: 0 auto;
}

.cunamor-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.cunamor-trust-list span {
    padding: 0.7rem 0.95rem;
    border-radius: var(--radius-full);
    background: #ffffff;
    box-shadow: var(--shadow-card);
    font-weight: 700;
}

.cunamor-home-services .cunamor-card--service {
    border: 1px solid rgba(217, 136, 128, 0.08);
    background:
        linear-gradient(180deg, rgba(253, 240, 242, 0.55) 0%, rgba(255, 255, 255, 1) 42%);
}

.cunamor-home-tracker .cunamor-container,
.cunamor-cta-section .cunamor-container {
    position: relative;
    z-index: 1;
}

.cunamor-cta-section {
    overflow: hidden;
}

.cunamor-cta-section .cunamor-container {
    max-width: 860px;
}

.cunamor-cta-section .cunamor-container,
.cunamor-home-tracker .cunamor-container {
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
}

.cunamor-cta-section .cunamor-container::before,
.cunamor-home-tracker .cunamor-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: var(--shadow-soft);
    z-index: -1;
}

@media (min-width: 768px) {
    .cunamor-hero__stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .cunamor-header__inner {
        gap: 0.75rem;
    }

    .cunamor-logo__image {
        max-width: min(180px, 52vw);
        max-height: 56px;
    }

    .cunamor-hero {
        min-height: auto;
        padding-top: calc(84px + var(--space-lg));
        padding-bottom: var(--space-lg);
    }

    .cunamor-hero__cta {
        flex-direction: column;
        align-items: stretch;
    }

    .cunamor-hero__cta .cunamor-btn {
        width: 100%;
    }

    .cunamor-highlight-pill,
    .cunamor-trust-list span {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* ==========================================================================
   12. WORDPRESS SPECIFIC
   ========================================================================== */

/* Alineaciones de WordPress */
.alignleft {
    float: left;
    margin: 0 var(--space-md) var(--space-md) 0;
}

.alignright {
    float: right;
    margin: 0 0 var(--space-md) var(--space-md);
}

.aligncenter {
    display: block;
    margin: 0 auto var(--space-md);
}

.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
}

/* WordPress Captions */
.wp-caption {
    max-width: 100%;
    margin-bottom: var(--space-md);
}

.wp-caption-text {
    font-size: 0.875rem;
    color: var(--gris-pizarra);
    opacity: 0.7;
    text-align: center;
    padding-top: var(--space-xs);
}

/* Sticky post */
.sticky {
    border-left: 4px solid var(--terracota-suave);
}

/* Screen reader text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}
.cunamor-logo__link {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.cunamor-logo__image {
    display: block;
    width: auto;
    height: auto;
    max-height: 100px;
    max-width: min(300px, 45vw);
    object-fit: contain;
}
