/* ============================================
   STYLES.CSS - ESTILOS PRINCIPALES TAXI LUCENA
   ============================================
   Autor: Taxi Lucena
   Versión: 1.2 (Integración de nuevas secciones: reseñas, why-us)
   Optimizado para: Mobile-first, velocidad, conversión
   ============================================ */

/* RESET Y ESTILOS BASE */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

/* TIPOGRAFÍA */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #25D366;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    margin-bottom: 1rem;
    color: #555;
}

/* CONTENEDOR PRINCIPAL */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER Y NAVEGACIÓN */
.main-header {
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.logo-text h1 {
    margin: 0;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.logo-subtitle {
    font-size: 0.9rem;
    color: #25D366;
    font-weight: 600;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
    padding: 8px 0;
    position: relative;
}

.nav-link:hover {
    color: #25D366;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #25D366;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-call-main {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-call-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.call-text {
    font-size: 0.9rem;
}

.call-number {
    font-size: 1.1rem;
    font-weight: 700;
}

/* HERO SECTION */
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: rgba(255,255,255,0.05);
    transform: skewX(-15deg);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-title {
    color: white;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.highlight {
    color: #25D366;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 3rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.feature i {
    color: #25D366;
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-hero {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    min-width: 220px;
}

.btn-hero-call {
    background: white;
    color: #1a1a1a;
}

.btn-hero-whatsapp {
    background: #25D366;
    color: white;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

.btn-number, .btn-subtext {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
}

.hero-note {
    color: #aaa;
    font-size: 0.95rem;
}

.hero-note i {
    color: #25D366;
}

.hero-image {
    position: absolute;
    right: 5%;
    bottom: 0;
    width: 40%;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* TRUST BAR */
.trust-bar {
    background: #f8f9fa;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    text-align: center;
    font-size: 0.95rem;
    color: #333;
}

.trust-bar i {
    color: #FFD700;
    margin-right: 5px;
}

.trust-bar strong {
    color: #25D366;
}

/* SECCIÓN SERVICIOS */
.services-section {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid #eee;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-highlight {
    border: 2px solid #25D366;
}

.service-icon {
    font-size: 2.5rem;
    color: #25D366;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-list {
    list-style: none;
    margin: 20px 0;
}

.service-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list i {
    color: #25D366;
    font-size: 0.9rem;
}

.service-price {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #25D366;
}

/* SECCIÓN POR QUÉ ELEGIRNOS */
.why-us-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.why-us-item {
    padding: 20px;
}

.why-us-item i {
    font-size: 3rem;
    color: #25D366;
    margin-bottom: 15px;
}

.why-us-item h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.why-us-item p {
    color: #666;
    font-size: 0.95rem;
}

/* SECCIÓN RESEÑAS */
.reviews-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.reviews-summary {
    text-align: center;
    margin-bottom: 40px;
}

.rating-box {
    font-size: 3rem;
    color: #25D366;
    font-weight: bold;
    display: inline-block;
    background: white;
    padding: 10px 30px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 10px;
}

.reviews-summary .stars {
    font-size: 2rem;
    color: #FFD700;
    margin: 10px 0;
}

.btn-google {
    display: inline-block;
    background: #4267B2;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s;
}

.btn-google:hover {
    background: #365899;
    transform: translateY(-2px);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.review-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.reviewer i {
    font-size: 2rem;
    color: #666;
}

.reviewer .stars {
    font-size: 0.9rem;
    color: #FFD700;
    letter-spacing: 2px;
}

.review-card p {
    font-style: italic;
    color: #555;
}

/* SECCIÓN AEROPUERTO */
.airport-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.airport-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-list {
    margin: 30px 0;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.benefit i {
    color: #25D366;
    font-size: 1.5rem;
    margin-top: 5px;
}

.benefit h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.quote-box {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-top: 30px;
}

.quote-box h4 {
    color: #25D366;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-quote {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s;
}

.btn-quote:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.airport-image {
    position: relative;
}

.airport-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.image-caption {
    position: absolute;
    bottom: -20px;
    left: 20px;
    right: 20px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.image-caption p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #25D366;
    font-weight: 500;
}

/* SECCIÓN PRECIOS */
.pricing-section {
    padding: 100px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.price-card {
    background: #fff;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 2px solid #eee;
    transition: all 0.3s;
    position: relative;
}

.price-card:hover {
    border-color: #25D366;
    transform: translateY(-5px);
}

.price-card.featured {
    border-color: #25D366;
    transform: scale(1.05);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #25D366;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-header {
    text-align: center;
    margin-bottom: 30px;
}

.price-header h3 {
    color: #1a1a1a;
    margin-bottom: 5px;
}

.price-header p {
    color: #666;
    font-size: 0.95rem;
}

.price-value {
    text-align: center;
    margin-bottom: 30px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #25D366;
    display: block;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
}

.price-features {
    list-style: none;
}

.price-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features i {
    color: #25D366;
}

.pricing-disclaimer {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #25D366;
}

.pricing-disclaimer p {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-disclaimer i {
    color: #25D366;
    margin-top: 3px;
}

/* SECCIÓN CONTACTO */
.contact-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.phone-card {
    border-top: 4px solid #25D366;
}

.whatsapp-card {
    border-top: 4px solid #25D366;
}

.coverage-card {
    border-top: 4px solid #4a6bff;
}

.contact-icon {
    font-size: 2.5rem;
    color: #25D366;
    margin-bottom: 20px;
}

.coverage-card .contact-icon {
    color: #4a6bff;
}

.contact-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 10px 0;
}

.btn-contact {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.whatsapp-btn {
    background: #25D366;
}

.btn-contact:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.coverage-list {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.coverage-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.coverage-list i {
    color: #4a6bff;
}

/* FOOTER */
.main-footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo p {
    color: #aaa;
    margin-bottom: 15px;
}

.footer-phone {
    font-size: 1.2rem;
    font-weight: 600;
    color: #25D366;
}

.footer-phone a {
    color: #25D366;
    text-decoration: none;
}

.footer-address, .footer-hours {
    color: #aaa;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.footer-links h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #25D366;
}

.footer-contact h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.call-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.footer-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.seo-text {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 500px;
}

/* BOTÓN WHATSAPP FLOTANTE */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    transition: all 0.3s;
    animation: pulse 2s infinite;
    color: white;
    font-size: 28px;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* BADGE DE RESEÑAS */
.review-badge {
    background: #28a745;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    display: inline-block;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 20px;
}

.stars {
    color: #FFD700;
    letter-spacing: 2px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-image {
        position: relative;
        right: auto;
        width: 100%;
        max-width: 500px;
        margin: 40px auto 0;
    }
    
    .airport-content {
        grid-template-columns: 1fr;
    }
    
    .price-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .logo-img {
        width: 50px;
        height: 50px;
    }
    
    .logo-text h1 {
        font-size: 1.3rem;
    }
    
    .logo-subtitle {
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-hero {
        min-width: 100%;
        justify-content: center;
    }
    
    .services-grid,
    .pricing-grid,
    .contact-grid,
    .why-us-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
    }
    
    .footer-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .logo-img {
        width: 45px;
        height: 45px;
    }
    
    .logo {
        gap: 10px;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* ACCESIBILIDAD */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* IMPRESIÓN */
@media print {
    .main-header,
    .whatsapp-float,
    .cookies-banner,
    .footer-buttons {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    a {
        color: black !important;
        text-decoration: underline !important;
    }
    
    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }
}