/*
Theme Name: Titanes de las Colinas Theme
Theme URI: https://titanesdelascolinas.com
Description: Tema personalizado para Escuela de Natación Titanes de las Colinas - Diseño inclusivo y profesional
Author: AdWolves Media
Author URI: https://adwolves.com
Template: twentytwentyfour
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: natacion, inclusivo, responsive, elementor, azul, turquesa
Text Domain: titanes-colinas
*/

/* ========================================
   TITANES DE LAS COLINAS - CUSTOM CSS
   ======================================== */

/* Variables de color */
:root {
    --titanes-blue: #003B5C;
    --titanes-turquoise: #00A9CE;
    --titanes-white: #FFFFFF;
    --titanes-light-gray: #F5F8FA;
    --titanes-dark-blue: #001E33;
    --titanes-whatsapp: #25D366;
    --titanes-text: #333333;
    --titanes-text-light: #666666;
}

/* Reset básico y tipografía */
body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--titanes-text);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    color: var(--titanes-blue);
    line-height: 1.2;
}

/* ========================================
   BOTONES PERSONALIZADOS
   ======================================== */

.titanes-btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

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

.titanes-btn--primary:hover {
    background-color: #008DB0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 169, 206, 0.3);
}

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

.titanes-btn--secondary:hover {
    background-color: var(--titanes-white);
    color: var(--titanes-blue);
}

.titanes-btn--whatsapp {
    background-color: var(--titanes-whatsapp);
    color: var(--titanes-white);
}

.titanes-btn--whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

.titanes-btn--outline {
    background-color: transparent;
    color: var(--titanes-turquoise);
    border: 2px solid var(--titanes-turquoise);
}

.titanes-btn--outline:hover {
    background-color: var(--titanes-turquoise);
    color: var(--titanes-white);
}

/* ========================================
   SECCIONES ESPECÍFICAS
   ======================================== */

/* Hero Section */
.titanes-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--titanes-blue) 0%, var(--titanes-dark-blue) 100%);
}

.titanes-hero__content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.titanes-hero__title {
    font-size: clamp(36px, 5vw, 56px);
    color: var(--titanes-white);
    margin-bottom: 24px;
}

.titanes-hero__subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.titanes-hero__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sección Inclusión Destacada */
.titanes-inclusion {
    background-color: var(--titanes-blue);
    color: var(--titanes-white);
    padding: 100px 0;
}

.titanes-inclusion h2,
.titanes-inclusion h3 {
    color: var(--titanes-white);
}

.titanes-inclusion__text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

/* Cards de Programas */
.titanes-program-card {
    background: var(--titanes-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 59, 92, 0.08);
    transition: all 0.3s ease;
}

.titanes-program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 59, 92, 0.15);
}

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

.titanes-program-card__content {
    padding: 24px;
}

.titanes-program-card__title {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--titanes-blue);
}

.titanes-program-card__description {
    font-size: 14px;
    color: var(--titanes-text-light);
    line-height: 1.6;
}

/* Icon Boxes */
.titanes-icon-box {
    text-align: center;
    padding: 40px 24px;
    background: var(--titanes-white);
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.titanes-icon-box:hover {
    box-shadow: 0 8px 30px rgba(0, 169, 206, 0.15);
}

.titanes-icon-box__icon {
    font-size: 48px;
    color: var(--titanes-turquoise);
    margin-bottom: 20px;
}

.titanes-icon-box__title {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--titanes-blue);
}

.titanes-icon-box__text {
    font-size: 15px;
    color: var(--titanes-text-light);
    line-height: 1.6;
}

/* Testimonios */
.titanes-testimonial {
    background: var(--titanes-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.titanes-testimonial::before {
    content: '"';
    font-size: 80px;
    color: var(--titanes-turquoise);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
}

.titanes-testimonial__text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--titanes-text);
    margin-bottom: 20px;
    font-style: italic;
}

.titanes-testimonial__author {
    font-weight: 600;
    color: var(--titanes-blue);
}

/* CTA Section */
.titanes-cta {
    background: linear-gradient(135deg, var(--titanes-blue) 0%, var(--titanes-turquoise) 100%);
    padding: 100px 0;
    text-align: center;
}

.titanes-cta__title {
    color: var(--titanes-white);
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 20px;
}

.titanes-cta__text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Botón WhatsApp Flotante */
.titanes-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--titanes-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

/* ========================================
   TABLA DE INCLUSIÓN
   ======================================== */

.titanes-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--titanes-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.titanes-table th {
    background-color: var(--titanes-blue);
    color: var(--titanes-white);
    padding: 20px;
    text-align: left;
    font-weight: 600;
}

.titanes-table td {
    padding: 20px;
    border-bottom: 1px solid #eee;
    color: var(--titanes-text);
}

.titanes-table tr:hover {
    background-color: var(--titanes-light-gray);
}

/* ========================================
   FORMULARIOS
   ======================================== */

.titanes-form input,
.titanes-form textarea,
.titanes-form select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.titanes-form input:focus,
.titanes-form textarea:focus,
.titanes-form select:focus {
    outline: none;
    border-color: var(--titanes-turquoise);
    box-shadow: 0 0 0 3px rgba(0, 169, 206, 0.1);
}

.titanes-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--titanes-blue);
}

.titanes-form button[type="submit"] {
    background-color: var(--titanes-turquoise);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.titanes-form button[type="submit"]:hover {
    background-color: #008DB0;
    transform: translateY(-2px);
}

/* ========================================
   UTILIDADES
   ======================================== */

.titanes-text-center { text-align: center; }
.titanes-text-white { color: var(--titanes-white); }
.titanes-text-turquoise { color: var(--titanes-turquoise); }
.titanes-text-blue { color: var(--titanes-blue); }

.titanes-bg-blue { background-color: var(--titanes-blue); }
.titanes-bg-light { background-color: var(--titanes-light-gray); }
.titanes-bg-white { background-color: var(--titanes-white); }

.titanes-py-large { padding-top: 100px; padding-bottom: 100px; }
.titanes-py-medium { padding-top: 60px; padding-bottom: 60px; }
.titanes-py-small { padding-top: 40px; padding-bottom: 40px; }

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .titanes-hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .titanes-hero__title {
        font-size: 32px;
    }

    .titanes-py-large {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .titanes-icon-box {
        margin-bottom: 20px;
    }

    .titanes-whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

/* ========================================
   ANIMACIONES
   ======================================== */

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

.titanes-pulse {
    animation: titanesPulse 2s infinite;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}
