/* Variables de colores según la paleta */
:root {
    --color-principal: #1F4E79;
    --color-azul-claro: #DDF2FE;
    --color-neutro-oscuro: #3A3A3A;
    --color-complementario: #4CAF50;
    --color-fondo-base: #FCFCFD;
    --color-blanco: #FFFFFF;
}

/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #3A3A3A; /* Neutro oscuro */
    background-color: #FCFCFD; /* Fondo base */
    overflow-x: hidden;
}

.logo-image {
        width: 62px;
}

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

/* Container interno para footer */
.container-int {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}
:root {
    --color-principal: #1F4E79;
    --color-azul-claro: #DDF2FE;
    --color-blanco: #FFFFFF;
    --color-fondo-base: #F8F9FA;
    --color-success: #4CAF50;
    --color-error: #F44336;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-fondo-base) 0%, var(--color-azul-claro) 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Contact Info */
.contact-info h2 {
    font-size: 36px;
    color: var(--color-principal);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info > p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--color-blanco);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--color-azul-claro);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.method-icon i {
    font-size: 20px;
    color: var(--color-principal);
}

.method-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-principal);
    margin-bottom: 5px;
}

.method-info p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Social Links */
.social-links h4 {
    font-size: 18px;
    color: var(--color-principal);
    margin-bottom: 15px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--color-blanco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-principal);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.social-icon:hover {
    background: var(--color-principal);
    color: var(--color-blanco);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(31, 78, 121, 0.3);
}

/* Form Container */
.contact-form-container {
    background: var(--color-blanco);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-principal), var(--color-success));
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 28px;
    color: var(--color-principal);
    margin-bottom: 10px;
    font-weight: 700;
}

.form-header p {
    color: #666;
    font-size: 16px;
}

/* Form Styles */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.input-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-principal);
    z-index: 2;
    font-size: 16px;
}

.input-wrapper input,
.input-wrapper textarea,
.input-wrapper select {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    background: var(--color-blanco);
    transition: all 0.3s ease;
    outline: none;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus,
.input-wrapper select:focus {
    border-color: var(--color-principal);
    box-shadow: 0 0 0 3px rgba(31, 78, 121, 0.1);
}

.input-wrapper textarea {
    resize: vertical;
    min-height: 120px;
}

/* Floating Labels */
.floating-label {
    position: absolute;
    left: 45px;
    top: 15px;
    color: #999;
    font-size: 16px;
    transition: all 0.3s ease;
    pointer-events: none;
    background: var(--color-blanco);
    padding: 0 5px;
}

.input-wrapper input:focus + .floating-label,
.input-wrapper input:not(:placeholder-shown) + .floating-label,
.input-wrapper textarea:focus + .floating-label,
.input-wrapper textarea:not(:placeholder-shown) + .floating-label,
.input-wrapper select:focus + .floating-label,
.input-wrapper select:not([value=""]) + .floating-label {
    transform: translateY(-30px) scale(0.85);
    color: var(--color-principal);
    left: 15px;
}

/* Checkbox */
.checkbox-group {
    margin: 25px 0;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark {
    background: var(--color-success);
    border-color: var(--color-success);
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.link {
    color: var(--color-principal);
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--color-principal), #2a5d87);
    color: var(--color-blanco);
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(31, 78, 121, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, var(--color-success), #45a049);
    color: white;
    border-radius: 12px;
    margin-top: 20px;
}

.success-message.show {
    display: block;
    animation: slideIn 0.5s ease;
}

.success-message i {
    font-size: 50px;
    margin-bottom: 15px;
    display: block;
}

.success-message h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

.success-message p {
    font-size: 16px;
    opacity: 0.9;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info h2 {
        font-size: 28px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .method-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .social-icons {
        justify-content: center;
    }
}
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-principal);
    color: var(--color-blanco);
    border: none;
}

.btn-primary:hover {
    background-color: #163d61;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.btn-outline:hover {
    background-color: rgba(31, 78, 121, 0.1);
    transform: translateY(-2px);
}

/* Header y Navegación */
header.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background-color: var(--color-blanco);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

header.navbar.hidden {
    transform: translateY(-100%);
}

header.navbar.visible {
    transform: translateY(0);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 24px;
    color: #1F4E79; /* Color Principal */
}

.logo-icon {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    height: 56px;
    margin-right: 5px;
    transition: transform 0.3s ease;
}

.logo a:hover .logo-text {
    transform: scale(1.05); /* Efecto sutil de escala al pasar el cursor */
}

.beta {
    font-size: 12px;
    margin-left: 5px;
    font-weight: 600;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-right: 25px;
}

nav ul li a {
    color: #3A3A3A; /* Neutro oscuro */
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--color-principal);
}

.user-profile {
    display: flex;
    align-items: center;
}

.dropdown {
    position: relative;
}

.profile-icon img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 150px;
    display: none;
    z-index: 1000;
}

.dropdown-menu.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
    display: block;
    padding: 8px 15px;
    color: var(--color-neutro-oscuro);
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #DDF2FE; /* Azul claro */
    padding: 120px 0 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgb(108 131 151 / 15%), rgb(31 78 121 / 11%)), url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    animation: zoom-in 10s forwards;
    opacity: 0.3;
}

@keyframes zoom-in {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    animation: fade-in-left 1s ease;
}

@keyframes fade-in-left {
    0% { opacity: 0; transform: translateX(-50px); }
    100% { opacity: 1; transform: translateX(0); }
}

.hero-text h1 {
    font-size: 32px;
    max-width: 600px;
    margin-bottom: 30px;
    color: #3A3A3A; /* Neutro oscuro */
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* Search Box */
.search-box {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    padding: 30px;
    width: 500px;
    position: relative;
    z-index: 2;
    animation: fade-in-right 1s ease;
}

@keyframes fade-in-right {
    0% { opacity: 0; transform: translateX(50px); }
    100% { opacity: 1; transform: translateX(0); }
}

.route-inputs {
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 10px;
}

.input-group .icon, .input-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #DDF2FE; /* Azul claro */
    margin-right: 10px;
    color: #3A3A3A; /* Neutro oscuro */
}

.input-group input {
    flex-grow: 1;
    border: none;
    outline: none;
    font-size: 16px;
}

.switch-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #1F4E79; /* Color Principal */
    cursor: pointer;
    transition: transform 0.3s ease;
}

.switch-btn:hover {
    transform: rotate(180deg);
}

.passengers {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #3A3A3A; /* Neutro oscuro */
}

.person-icon {
    margin-right: 10px;
    color: var(--color-principal);
}

.savings {
    margin-bottom: 20px;
    color: #3A3A3A; /* Neutro oscuro */
}

.savings h2 {
    font-size: 24px;
}

.highlight {
    color: #4CAF50; /* Complementario */
}

.publish-trip-btn {
    width: 100%;
    background-color: #1F4E79; /* Color Principal */
    color: white;
    border: none;
    padding: 15px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.publish-trip-btn:hover {
    background-color: #163d61; /* Versión más oscura del Principal */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.como-funciona {
    display: block;
    text-align: center;
    color: var(--color-principal);
    font-weight: 500;
    transition: color 0.3s ease;
}

.como-funciona:hover {
    color: #163d61;
}

.como-funciona i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.como-funciona:hover i {
    transform: translateX(5px);
}

.car-illustration {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    max-width: 500px;
    z-index: 1;
    opacity: 0.8;
}

.car-illustration img {
    width: 100%;
    height: auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--color-fondo-base);
}

.features h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    position: relative;
}

.features h2:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-principal);
}

.feature-cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.feature-card {
    background-color: var(--color-blanco);
    border-radius: 16px;
    padding: 30px;
    flex: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--color-azul-claro);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 30px;
    color: var(--color-principal);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Slogan Section */
.slogan {
    text-align: center;
    padding: 50px 0;
    background-color: var(--color-azul-claro);
}

.slogan h2 {
    font-size: 32px;
    font-weight: 700;
    color: #3A3A3A; /* Neutro oscuro */
    margin-bottom: 30px;
}

/* Footer - ESTILOS ORIGINALES */
footer {
    background-color: var(--color-principal);
    color: var(--color-blanco);
    padding: 60px 0 30px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h3:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--color-complementario);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--color-blanco);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 14px;
}

.publish-trip-btn-footer {
    background-color: #1F4E79; /* Color Principal */
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.publish-trip-btn-footer:hover {
    background-color: #163d61; /* Versión más oscura del Principal */
}

.footer-contact {
    background-color: var(--color-azul-claro);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.footer-contact-text h2 {
    font-size: 24px;
    color: var(--color-principal);
    margin-bottom: 10px;
}

.footer-contact-text p {
    color: var(--color-neutro-oscuro);
    font-size: 16px;
    max-width: 500px;
}

.footer-contact-btn {
    background-color: var(--color-principal);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-contact-btn:hover {
    background-color: #163d61;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer-contact-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.footer-contact-btn:hover i {
    transform: translateX(5px);
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

/* NUEVOS ESTILOS FOOTER CON SUFIJO -INT */
.footer-columns-int {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-column-int {
    flex: 1;
}

.footer-column-int h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
}

.footer-column-int h3:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--color-complementario);
}

.footer-column-int ul li {
    margin-bottom: 10px;
}

.footer-column-int ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-column-int ul li a:hover {
    color: var(--color-blanco);
}

.social-icons-int {
    display: flex;
    gap: 15px;
}

.social-icons-int a {
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    font-size: 32px;
}

.social-icons-int a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.footer-bottom-int {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 14px;
}

.footer-contact-int {
    background-color: var(--color-azul-claro);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.footer-contact-text-int h2 {
    font-size: 24px;
    color: var(--color-principal);
    margin-bottom: 10px;
}

.footer-contact-text-int p {
    color: var(--color-neutro-oscuro);
    font-size: 16px;
    max-width: 500px;
}

.footer-contact-btn-int {
    background-color: var(--color-principal);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-contact-btn-int:hover {
    background-color: #163d61;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer-contact-btn-int i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.footer-contact-btn-int:hover i {
    transform: translateX(5px);
}

.footer-divider-int {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

/* Ajustes responsive para footer interno */
@media (max-width: 768px) {
    .footer-contact-int {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-contact-text-int {
        margin-bottom: 20px;
    }
    
    .footer-contact-text-int p {
        margin: 0 auto;
    }
    
    .footer-columns-int {
        flex-direction: column;
        gap: 30px;
    }
    
    .social-icons-int {
        justify-content: center;
    }
    
    .social-icons-int a {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        margin-bottom: 40px;
        max-width: 100%;
        margin-top: 70px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .search-box {
        width: 100%;
        max-width: 500px;
    }

    .car-illustration {
        display: none;
    }

    .feature-cards {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }
    
    nav {
        order: 3;
        width: 100%;
        margin-top: 15px;
    }
    
    nav ul {
        justify-content: space-between;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .footer-columns {
        flex-direction: column;
        gap: 30px;
    }
}

.input-group select {
    flex-grow: 1;
    border: none;
    outline: none;
    font-size: 16px;
    background: transparent;
    color: #3A3A3A;
    cursor: pointer;
}

.input-group select:focus {
    outline: none;
}

.input-group select option {
    background: white;
    color: #3A3A3A;
    padding: 10px;
}

/* Selector de pasajeros */
.passengers {
    margin-bottom: 20px;
}

.passengers-group {
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.passengers-group select {
    font-weight: 500;
    color: var(--color-principal);
}

/* Botón de búsqueda */
.search-btn {
    width: 100%;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.search-btn:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.3);
}

.search-btn:active {
    transform: translateY(0);
}

/* Mejoras visuales para los selects */
.input-group {
    position: relative;
}

.input-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

/* Estados de validación */
.input-group.error {
    border-color: #F44336;
    box-shadow: 0 0 0 2px rgba(244, 67, 54, 0.2);
}

.input-group.success {
    border-color: #4CAF50;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

/* Animación del switch button */
.switch-btn {
    transition: all 0.3s ease;
}

.switch-btn:hover {
    transform: rotate(180deg);
    background-color: rgba(31, 78, 121, 0.1);
    border-radius: 50%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .search-box {
        width: 90%;
        margin: 0 auto;
        padding: 20px;
    }
    
    .input-group select {
        font-size: 14px;
    }
    
    .search-btn {
        padding: 12px;
        font-size: 14px;
    }
}

/* Loading state */
.search-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.search-btn.loading::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mensaje de autenticación */
.auth-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.auth-message.show {
    transform: translateX(0);
}

.auth-message.warning {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}

.auth-message i {
    margin-right: 8px;
}

/* Viajes Section */
.viajes-disponibles {
    padding: 80px 0;
    background-color: var(--color-fondo-base);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    color: var(--color-principal);
    margin-bottom: 10px;
    font-weight: 700;
}

.section-header p {
    font-size: 16px;
    color: #666;
}

/* Carousel */
/* Contenedor principal del carrusel */
.carousel-container {
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
}

/* Carrusel de viajes */
.viajes-carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease-in-out;
    width: max-content;
}

/* Cards de viajes */
.viaje-card {
    flex: 0 0 auto;
    width: 320px;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.viaje-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive para tablets */
@media (max-width: 768px) {
    .viaje-card {
        width: 280px;
    }
    
    .viajes-carousel {
        gap: 15px;
    }
}

/* Responsive para móviles */
@media (max-width: 480px) {
    .viaje-card {
        width: 260px;
    }
    
    .viajes-carousel {
        gap: 10px;
    }
}

/* Controles del carrusel */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: #2563eb;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover:not(:disabled) {
    background: #1d4ed8;
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Dots del carrusel */
.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #2563eb;
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: #6b7280;
}

/* Estilos para el contenido de las cards */
.route {
    margin-bottom: 1rem;
}

.cities {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.cities .fas {
    color: #2563eb;
}

.time {
    color: #6b7280;
    font-size: 0.9rem;
}

.driver {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.driver img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.driver .info h4 {
    margin: 0;
    font-size: 1rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #fbbf24;
}

.details {
    margin-bottom: 1.5rem;
}

.details .item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #6b7280;
    font-size: 0.9rem;
}

.price {
    text-align: right;
    margin-top: 1rem;
}

.price .amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2563eb;
}

.price small {
    display: block;
    color: #6b7280;
    font-size: 0.8rem;
}

.reserve-btn {
    width: 100%;
    background: #2563eb;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reserve-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}
.cta-section {
    background: linear-gradient(135deg, var(--color-principal) 0%, #2A5A8A 50%, var(--color-principal) 100%);
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    margin: 4rem auto 2rem;
    max-width: 800px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(31, 78, 121, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(221, 242, 254, 0.15) 0%, rgba(221, 242, 254, 0.05) 100%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(221, 242, 254, 0.2) 0%, transparent 70%);
    animation: floatingLight 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes floatingLight {
    0%, 100% { transform: translate(-20%, -20%) rotate(0deg); }
    33% { transform: translate(20%, -10%) rotate(120deg); }
    66% { transform: translate(-10%, 20%) rotate(240deg); }
}

.cta-section:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 60px rgba(31, 78, 121, 0.4),
        0 0 0 1px rgba(221, 242, 254, 0.3);
}

/* Título del CTA */
.cta-section h3 {
    color: var(--color-blanco);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin: 0 0 2rem 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.cta-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgba(221, 242, 254, 0) 0%, var(--color-azul-claro) 50%, rgba(221, 242, 254, 0) 100%);
    border-radius: 2px;
}

/* Subtítulo del CTA */
.cta-subtitle {
    color: var(--color-azul-claro);
    font-size: 1.1rem;
    margin: 0 0 2rem 0;
    position: relative;
    z-index: 2;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* Icono del CTA */
.cta-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Estadísticas del CTA */
.cta-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.stat {
    text-align: center;
    color: var(--color-blanco);
}

.stat .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    color: var(--color-azul-claro);
}

.stat .label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-blanco);
}

/* Botón del CTA */
.cta-btn {
    background: linear-gradient(45deg, var(--color-complementario), #45A049);
    color: var(--color-blanco);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 20px rgba(76, 175, 80, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(76, 175, 80, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(45deg, #45A049, #388E3C);
}

.cta-btn:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}

/* Icono del botón - Carro */
.cta-btn::after {
    content: '🚗';
    margin-left: 0.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-btn:hover::after {
    transform: translateX(5px);
}

/* Botón con icono FontAwesome */
.cta-btn i {
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: scale(1.2);
}

/* Variante sutil con colores corporativos */
.cta-section.subtle {
    background: linear-gradient(135deg, var(--color-fondo-base) 0%, var(--color-azul-claro) 100%);
    border: 2px solid var(--color-azul-claro);
    color: var(--color-neutro-oscuro);
    box-shadow: 
        0 20px 40px rgba(31, 78, 121, 0.1),
        0 0 0 1px rgba(31, 78, 121, 0.05);
}

.cta-section.subtle::before {
    background: linear-gradient(135deg, rgba(31, 78, 121, 0.05) 0%, rgba(31, 78, 121, 0.02) 100%);
}

.cta-section.subtle::after {
    background: radial-gradient(circle, rgba(31, 78, 121, 0.1) 0%, transparent 70%);
}

.cta-section.subtle h3 {
    color: var(--color-principal);
    text-shadow: none;
}

.cta-section.subtle .cta-subtitle {
    color: var(--color-neutro-oscuro);
    opacity: 0.8;
}

.cta-section.subtle .cta-btn {
    background: linear-gradient(45deg, var(--color-principal), #2A5A8A);
    box-shadow: 0 8px 20px rgba(31, 78, 121, 0.3);
}

.cta-section.subtle .cta-btn:hover {
    background: linear-gradient(45deg, #2A5A8A, #1A3F66);
    box-shadow: 0 15px 35px rgba(31, 78, 121, 0.5);
}

.cta-section.subtle .stat .number {
    color: var(--color-principal);
}

.cta-section.subtle .stat .label {
    color: var(--color-neutro-oscuro);
}

/* Efectos de entrada animados */
.cta-section {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

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

/* Partículas decorativas */
.cta-section.particles::before {
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(221, 242, 254, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 80% 40%, rgba(221, 242, 254, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(221, 242, 254, 0.15) 1px, transparent 1px),
        radial-gradient(circle at 90% 80%, rgba(221, 242, 254, 0.25) 2px, transparent 2px);
    background-size: 100px 100px, 80px 80px, 120px 120px, 90px 90px;
    animation: particles 20s linear infinite;
}

@keyframes particles {
    0% { background-position: 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 100px 100px, -80px 80px, 120px -120px, -90px 90px; }
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section {
        margin: 3rem 1rem 2rem;
        padding: 3rem 1.5rem;
        border-radius: 20px;
    }
    
    .cta-section h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-btn {
        padding: 0.9rem 2.5rem;
        font-size: 1.1rem;
        width: 100%;
        max-width: 280px;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat .number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 2.5rem 1rem;
        border-radius: 16px;
    }
    
    .cta-section h3 {
        font-size: 1.6rem;
    }
    
    .cta-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}