

        /* Estilos generales */

        * {

            margin: 0;

            padding: 0;

            box-sizing: border-box;

            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

        }

        

        body {

            background-color: #f8f9fa;

            color: #333;

            line-height: 1.6;

        }

        

        .container {

            width: 90%;

            max-width: 1200px;

            margin: 0 auto;

            padding: 0 15px;

        }

        

        /* Header y navegación */

        header {

            background-color: #fff;

            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

            position: sticky;

            top: 0;

            z-index: 1000;

        }

        

        .navbar {

            display: flex;

            justify-content: space-between;

            align-items: center;

            padding: 15px 0;

        }

        

        .logo {

            display: flex;

            align-items: center;

        }

        

        .logo h1 {

            color: #e68139;

            font-size: 1.8rem;

            margin-left: 10px;

        }

        

        .nav-links {

            display: flex;

            list-style: none;

        }

        

        .nav-links li {

            margin-left: 25px;

        }

        

        .nav-links a {

            text-decoration: none;

            color: #333;

            font-weight: 500;

            transition: color 0.3s;

        }

        

        .nav-links a:hover {

            color: #e63946;

        }

        

        .btn {

            display: inline-block;

            background-color: #f7a13e;

            color: white;

            padding: 10px 20px;

            border-radius: 5px;

            text-decoration: none;

            font-weight: 500;

            transition: background-color 0.3s;

        }

        

        .btn:hover {

            background-color: #f7a13e;

        }

        

        /* Hero section playas */

        .heroplaya {

            background: linear-gradient(rgba(109, 151, 249, 0.5), rgba(109, 151, 249, 0.5)), url('https://integratzia.com/viajaleon/img/playas.png') no-repeat center center/cover;

            height: 70vh;

            display: flex;

            align-items: center;

            text-align: center;

            color: white;

        }

        

        .heroplaya-content {

            max-width: 800px;

            margin: 0 auto;

        }

        

        .heroplaya h2 {

            font-size: 2.5rem;

            margin-bottom: 20px;

        }

        

        .heroplaya p {

            font-size: 1.2rem;

            margin-bottom: 30px;

        }



        /* Hero section */



        .hero {

            background: linear-gradient(rgba(109, 151, 249, 0.5), rgba(109, 151, 249, 0.5)), url('https://integratzia.com/viajaleon/img/peralta.png') no-repeat center center/cover;

            height: 70vh;

            display: flex;

            align-items: center;

            text-align: center;

            color: white;

        }

        

        .hero-content {

            max-width: 800px;

            margin: 0 auto;

        }

        

        .hero h2 {

            font-size: 2.5rem;

            margin-bottom: 20px;

        }

        

        .hero p {

            font-size: 1.2rem;

            margin-bottom: 30px;

        }

        

        /* Sección de destinos */

        .destinations {

            padding: 80px 0;

        }

        

        .section-title {

            text-align: center;

            margin-bottom: 50px;

        }

        

        .section-title h2 {

            font-size: 2rem;

            color: #333;

            margin-bottom: 15px;

            position: relative;

            display: inline-block;

        }

        

        .section-title h2::after {

            content: '';

            position: absolute;

            width: 50%;

            height: 3px;

            background-color: #f7a13e;

            bottom: -10px;

            left: 25%;

        }

        

        .section-title p {

            color: #666;

            max-width: 700px;

            margin: 0 auto;

        }

        

        .destination-cards {

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

            gap: 30px;

        }

        

        .card {

            background-color: white;

            border-radius: 10px;

            overflow: hidden;

            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

            transition: transform 0.3s;

        }

        

        .card:hover {

            transform: translateY(-10px);

        }

        

        .card-img {

            height: 200px;

            overflow: hidden;

        }

        

        .card-img img {

            width: 100%;

            height: 100%;

            object-fit: cover;

            transition: transform 0.5s;

        }

        

        .card:hover .card-img img {

            transform: scale(1.1);

        }

        

        .card-content {

            padding: 20px;

        }

        

        .card h3 {

            margin-bottom: 10px;

            color: #333;

        }

        

        .card p {

            color: #666;

            margin-bottom: 15px;

        }

        

        /* Sección sobre nosotros */

        .about {

            padding: 80px 0;

            background-color: #fff;

        }

        

        .about-content {

            display: grid;

            grid-template-columns: 1fr 1fr;

            gap: 50px;

            align-items: center;

        }

        

        .about-text h2 {

            font-size: 2rem;

            margin-bottom: 20px;

            color: #333;

        }

        

        .about-text p {

            margin-bottom: 20px;

            color: #666;

        }

        

        .about-image img {

            width: 100%;

            border-radius: 10px;

            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

        }

        

        /* Sección de contacto */

        .contact {

            padding: 80px 0;

        }

        

        .contact-content {

            display: grid;

            grid-template-columns: 1fr 1fr;

            gap: 50px;

        }

        

        .contact-info h3 {

            margin-bottom: 20px;

            color: #333;

        }

        

        .contact-info p {

            margin-bottom: 15px;

            display: flex;

            align-items: center;

        }

        

        .contact-info i {

            margin-right: 10px;

            color: #f7a13e;

        }

        

        .contact-form input,

        .contact-form textarea {

            width: 100%;

            padding: 12px;

            margin-bottom: 20px;

            border: 1px solid #ddd;

            border-radius: 5px;

        }

        

        .contact-form textarea {

            height: 150px;

            resize: vertical;

        }

        

        /* Footer */

        footer {

            background-color: #333;

            color: white;

            padding: 50px 0 20px;

        }



        footer a,

            .footer a,

            #footer a {

            color: white !important;

        }



        footer a:hover,

            footer a:focus {

            color: #f0f0f0; /* o cualquier tono de blanco/claro que prefieras */

        }

        

        .footer-content {

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

            gap: 30px;

            margin-bottom: 30px;

        }

        

        .footer-column h3 {

            margin-bottom: 20px;

            font-size: 1.2rem;

        }

        

        .footer-column ul {

            list-style: none;

        }

        

        .footer-column ul li {

            margin-bottom: 10px;

        }

        

        .footer-column a {

            color: #ddd;

            text-decoration: none;

            transition: color 0.3s;

        }

        

        .footer-column a:hover {

            color: #f7a13e;

        }

        

        .social-links {

            display: flex;

            gap: 15px;

        }

        

        .social-links a {

            display: inline-block;

            width: 40px;

            height: 40px;

            background-color: #444;

            border-radius: 50%;

            text-align: center;

            line-height: 40px;

            transition: background-color 0.3s;

        }

        

        .social-links a:hover {

            background-color: #f7a13es;

        }

        

        .copyright {

            text-align: center;

            padding-top: 20px;

            border-top: 1px solid #444;

            font-size: 0.9rem;

            color: #aaa;

        }



        .copyright-links a {

            text-decoration: none;

            color: #f9f2f2;

            font-weight: 500;

            transition: color 0.3s;

        }

        

        /* Responsive */

        @media (max-width: 768px) {

            .navbar {

                flex-direction: column;

            }

            

            .nav-links {

                margin-top: 20px;

                flex-wrap: wrap;

                justify-content: center;

            }

            

            .nav-links li {

                margin: 5px 10px;

            }

            

            .hero h2 {

                font-size: 2rem;

            }

            

            .about-content,

            .contact-content {

                grid-template-columns: 1fr;

            }

        }

    .flight-search-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.flight-search-section .section-title {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.flight-search-section .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.iframe-wrapper {
    display: inline-block;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}