/* ==========================================================
   SECTIONS.CSS — Secciones comunes de la web RADIOHIRE
   ==========================================================

   ÍNDICE:
   1.  Variables & Reset
   2.  Utilidades base (.container, body, img)
   3.  Catálogo (presentación interna)
   4.  Hero Carousel (Corporate Tech)
   5.  Benefits Grid
   6.  Product Spotlight
   7.  Sectors Tiles
   8.  Steps Simple Process
   9.  Stats Dark
   10. Comparison Table
   11. CTA Impact
   12. Contact Split
   13. Clients Trust
   14. Hero Festival
   15. Feature Row Zigzag
   16. Event Cards
   17. Stats Grid
   18. Timeline
   19. Testimonial Quote
   20. Features Masonry
   21. CTA Simple / CTA V1
   22. About Section
   23. Media Queries
   ========================================================== */


/* ----------------------------------------------------------
   1. VARIABLES & RESET
   ---------------------------------------------------------- */

:root {
    /* Colores principales */
    --primary: #0e315b;
    --primary-dark: #051a33;
    --primary-light: #1c4b82;
    --accent: #00d2ff;

    /* Textos */
    --text: #333333;
    --text-light: #666666;
    --text-gray: #64748b;

    /* Fondos */
    --bg-light: #f4f7f6;
    --white: #ffffff;

    /* Efectos */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 10px 30px rgba(14, 49, 91, 0.1);
    --radius: 8px;
}


/* ----------------------------------------------------------
   2. UTILIDADES BASE
   ---------------------------------------------------------- */

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: #eef2f5;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* ----------------------------------------------------------
   3. CATÁLOGO — Presentación interna
   ---------------------------------------------------------- */

.catalog-header {
    background: var(--primary);
    color: var(--white);
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 60px;
}

.catalog-header h1 {
    margin: 0;
    font-weight: 800;
    letter-spacing: -1px;
    font-size: 2.5rem;
}

.catalog-section-label {
    max-width: 1200px;
    margin: 80px auto 30px;
    padding-left: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 15px;
    display: flex;
    justify-content: space-between;
}


/* ----------------------------------------------------------
   4. HERO CAROUSEL (Corporate Tech)
   ---------------------------------------------------------- */

/* Contenedor del carrusel */
.hero-carousel {
    position: relative;
    overflow: hidden;
}

/* Slide base */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 650px;
    padding: 64px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);

    /* Animación suave */
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

/* Slide activo */
.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

/* Imagen lateral con clip-path */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--hero-bg) no-repeat center center/cover;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

/* Hero estático */
.hero-static {
    position: relative;
    overflow: hidden;
}

.hero-static-inner,
.hero-static-inner-2 {
    position: relative;
    width: 100%;
    min-height: 450px;
    padding: 64px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Imagen lateral fija (hero-static-inner) */
.hero-static-inner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('/wp-content/uploads/2026/01/hero_corporate.jpg') no-repeat center center/cover;
    opacity: 0.25;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

/* Imagen lateral fija (hero-static-inner-2) */
.hero-static-inner-2::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url(/wp-content/uploads/2026/01/empty-us-polling-place-with-white-voting-booths-american-flags-concept-voting-booths-polling-place-american-flags-united-states-election-day-scaled.jpg) no-repeat center center / cover;
    opacity: 0.25;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

/* Contenido del hero (z-index unificado, máximo aplicado) */
.hero-tech-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

/* Tagline badge */
.tagline {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Tipografía del slide */
.hero-slide h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-slide p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
}

/* Grupo de botones */
.btn-group {
    display: flex;
    gap: 15px;
}

/* Controles (dots) del carrusel */
.hero-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-controls .dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.hero-controls .dot.active {
    background: var(--white);
    transform: scale(1.2);
}


/* ----------------------------------------------------------
   5. BENEFITS GRID (Modern)
   ---------------------------------------------------------- */

.benefits-modern {
    padding: 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.benefits-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card-modern {
    background: var(--white);
    padding: 40px 30px;
    border: 1px solid #eee;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card-modern:hover {
    border-color: transparent;
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.benefit-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.benefit-card-modern:hover::before {
    transform: scaleX(1);
}

.b-icon {
    width: 60px;
    height: 60px;
    background: #f0f4f8;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.benefit-card-modern:hover .b-icon {
    background: var(--primary);
    color: var(--white);
}

.benefit-card-modern h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.benefit-card-modern p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}


/* ----------------------------------------------------------
   6. PRODUCT SPOTLIGHT
   ---------------------------------------------------------- */

.product-spotlight {
    padding: 32px 0;
    background: #111;
    color: var(--white);
    margin-bottom: 64px;
}

.spotlight-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.spotlight-image {
    flex: 1;
    position: relative;
}

.spotlight-image img {
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 30px rgba(0, 210, 255, 0.2));
}

.spotlight-info {
    flex: 1;
}

.spotlight-info h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    background: linear-gradient(to right, #fff, #999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.model-tag {
    color: var(--accent);
    font-family: monospace;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
    display: block;
}

.tech-specs-list {
    list-style: none;
    margin-bottom: 40px;
}

.tech-specs-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.tech-specs-list li i {
    color: var(--accent);
    margin-right: 15px;
    font-size: 1.2rem;
}

.tech-specs-list li span {
    font-weight: 500;
}

.tech-specs-list li small {
    margin-left: auto;
    color: #888;
}


/* ----------------------------------------------------------
   7. SECTORS TILES
   ---------------------------------------------------------- */

.sectors-tiles {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.tiles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 250px 250px;
    gap: 15px;
}

.tile-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.tile-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tile-item:hover img {
    transform: scale(1.1);
}

.tile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: white;
}

.tile-overlay h3 {
    margin: 0;
    font-size: 1.2rem;
}

.tile-large {
    grid-column: span 2;
    grid-row: span 2;
}


/* ----------------------------------------------------------
   8. STEPS — Simple Process
   ---------------------------------------------------------- */

.steps-simple {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: #e1e1e1;
    z-index: 1;
}

.step-item {
    position: relative;
    z-index: 2;
    background: var(--white);
    padding: 0 20px;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.step-item:hover .step-number {
    background: var(--primary);
    color: var(--white);
}

.step-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.step-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}


/* ----------------------------------------------------------
   9. STATS — Dark
   ---------------------------------------------------------- */

.stats-dark {
    background: var(--primary);
    padding: 80px 0;
    color: var(--white);
}

.stats-flex {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-box h3 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: var(--accent);
}

.stat-box p {
    font-size: 1.1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ----------------------------------------------------------
   10. COMPARISON TABLE
   ---------------------------------------------------------- */

.comparison-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.compare-table th,
.compare-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.compare-table th {
    background: #f9f9f9;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.compare-table th.highlight {
    background: var(--primary);
    color: var(--white);
    position: relative;
}

.compare-table th.highlight::after {
    content: 'RECOMENDADO';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--primary-dark);
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 800;
}

.compare-table tr:last-child td {
    border-bottom: none;
}

.check-icon {
    color: #2ecc71;
}

.cross-icon {
    color: #e74c3c;
}


/* ----------------------------------------------------------
   11. CTA IMPACT
   ---------------------------------------------------------- */

.cta-impact {
    background: url('../assets/hero_festival.png') no-repeat center center/cover;
    position: relative;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.cta-impact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 49, 91, 0.9);
}

.cta-impact-content {
    position: relative;
    z-index: 1;
}

.cta-impact h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}


/* ----------------------------------------------------------
   12. CONTACT SPLIT
   ---------------------------------------------------------- */

.contact-split {
    display: flex;
    background: var(--white);
}

.contact-info-side {
    flex: 1;
    background: var(--primary);
    color: var(--white);
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-side {
    flex: 1;
    padding: 80px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--accent);
}


/* ----------------------------------------------------------
   13. CLIENTS TRUST
   ---------------------------------------------------------- */

.clients-trust {
    padding: 60px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.logos-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.6;
    flex-wrap: wrap;
    gap: 30px;
}

.logo-item {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ccc;
    text-transform: uppercase;
}


/* ----------------------------------------------------------
   14. HERO FESTIVAL (Countdown)
   ---------------------------------------------------------- */

.hero-festival {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../assets/hero_festival.png') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
}

.hero-festival::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 49, 91, 0.7);
}

.hero-festival-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.festival-badge {
    background: var(--accent);
    color: var(--primary-dark);
    padding: 10px 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 30px;
    transform: skew(-10deg);
}

.hero-festival h1 {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1;
}


/* ----------------------------------------------------------
   15. FEATURE ROW — Zigzag
   ---------------------------------------------------------- */

.feature-row {
    padding: 80px 0;
    background: var(--white);
}

.feature-row-container {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.feature-row-container:last-child {
    margin-bottom: 0;
}

.feature-row-container.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-label {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.feature-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-list {
    margin-top: 30px;
    list-style: none;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.feature-list li i {
    color: var(--accent);
    margin-right: 15px;
    font-size: 1.2rem;
}


/* ----------------------------------------------------------
   16. EVENT CARDS
   ---------------------------------------------------------- */

.event-cards-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.event-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.event-card-item {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    top: 0;
}

.event-card-item:hover {
    top: -10px;
    box-shadow: var(--shadow);
}

.card-img-top {
    height: 200px;
    overflow: hidden;
}

.card-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.event-card-item:hover .card-img-top img {
    transform: scale(1.1);
}

.card-body {
    padding: 30px;
}

.card-body h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.card-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 700;
    margin-top: 20px;
    text-decoration: none;
    transition: var(--transition);
}

.card-link:hover {
    color: var(--accent);
    transform: translateX(5px);
}


/* ----------------------------------------------------------
   17. STATS GRID
   ---------------------------------------------------------- */

.stats-grid-section {
    padding: 80px 0;
    background: var(--primary-dark);
    color: var(--white);
    text-align: center;
}

.stats-icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.stat-icon-item i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.stat-icon-item h4 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--white);
}

.stat-icon-item p {
    color: rgba(255, 255, 255, 0.7);
}


/* ----------------------------------------------------------
   18. TIMELINE — Process
   ---------------------------------------------------------- */

.timeline-section {
    padding: 100px 0;
    background: var(--white);
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #e1e1e1;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50px;
    position: relative;
    margin-bottom: 50px;
    width: 50%;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50px;
    margin-left: 50%;
}

.timeline-dot {
    position: absolute;
    right: -10px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--accent);
}

.timeline-item:nth-child(even) .timeline-dot {
    right: auto;
    left: -10px;
}

.timeline-content {
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--radius);
    position: relative;
}

.timeline-content h4 {
    color: var(--primary);
    margin-bottom: 10px;
}


/* ----------------------------------------------------------
   19. TESTIMONIAL QUOTE
   ---------------------------------------------------------- */

.testimonial-quote {
    padding: 100px 0;
    background: url('../assets/hero_corporate.png') fixed center center/cover;
    position: relative;
}

.testimonial-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 49, 91, 0.85);
}

.quote-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.quote-icon {
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: 30px;
}

.quote-text {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 40px;
    font-style: italic;
    font-weight: 300;
}

.quote-author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    margin: 0 auto 15px;
}

/* About quote (variante sidebar) */
.about-quote {
    border-left: 4px solid var(--accent);
    padding-left: 1.5rem;
    margin-top: 2rem;
}

.quote-author {
    margin-top: 1rem;
    font-weight: 600;
}


/* ----------------------------------------------------------
   20. FEATURES MASONRY
   ---------------------------------------------------------- */

.features-grid-masonry {
    padding: 100px 0;
    background: var(--white);
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
}

.masonry-item {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    transition: var(--transition);
}

.masonry-item:hover {
    background: var(--primary);
    color: var(--white);
}

.masonry-item i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.masonry-item:hover h3 {
    color: var(--white);
}

.masonry-large {
    grid-column: span 2;
}


/* ----------------------------------------------------------
   21. CTA SIMPLE DARK / CTA V1
   ---------------------------------------------------------- */

.cta-simple {
    padding: 80px 0;
    background: #000;
    color: var(--white);
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.cta-v1-section {
    background: linear-gradient(90deg, #0e315b 0%, #07203e 100%);
    padding: 60px 20px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    margin-bottom: 64px;
}

.cta-v1-section *,
.cta-v1-section *::before,
.cta-v1-section *::after {
    box-sizing: border-box;
}

.cta-v1-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-v1-text {
    flex: 1;
    min-width: 300px;
}

.cta-v1-text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 10px 0;
    line-height: 1.2;
    color: #ffffff;
}

.cta-v1-text p {
    font-size: 1.1rem;
    margin: 0;
    color: #dbe4ef;
    line-height: 1.5;
}

.cta-v1-btn:hover {
    transform: translateY(-2px);
    background-color: #2b8db3;
}


/* ----------------------------------------------------------
   22. ABOUT SECTION
   ---------------------------------------------------------- */

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-subtitle {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.about-title {
    font-size: 32px;
    color: var(--primary);
    margin: 1rem 0;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}


/* ==========================================================
   23. MEDIA QUERIES — de mayor a menor breakpoint
   ========================================================== */

/* Tablets grandes (hasta 960px) */
@media (max-width: 960px) {
    .minimal-container {
        flex-direction: column;
    }

    .minimal-heading {
        font-size: 2.5rem;
    }

    .col-pillars {
        width: 100%;
        padding: 30px;
        margin-top: 40px;
    }
}

/* Tablets (hasta 900px) */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .about-image {
        margin-top: 2rem;
    }
}

/* Tablets pequeñas / Móviles grandes (hasta 768px) */
@media (max-width: 768px) {
    .cta-v1-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-v1-btn {
        width: 100%;
        justify-content: center;
    }
}