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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.navbar {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

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

.logo {
    height: 50px;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #3498db;
}



.hero {
    margin-top: 80px;
    height: 72vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('./images/PORTADA WEB.png');
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.hero-content {
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: bold;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-button {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.destinations {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.destination-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
}

.destination-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.card-content p {
    color: #666;
    margin-bottom: 15px;
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #e74c3c;
}

.floating-social-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 75px;
}

.floating-main-btn {
    width: 75px;
    height: 75px;
    background: linear-gradient(45deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(0, 200, 81, 0.4);
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
    margin-bottom: 20px;
    position: relative;
    z-index: 1001;
}

.floating-main-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

.arrow-icon {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.floating-main-btn.active .arrow-icon {
    transform: rotate(180deg);
}

.social-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: absolute;
    bottom: 110px;
    right: 0;
    left: 0;
    align-items: center;
}

.social-buttons-container.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
}

.social-buttons-container.active .floating-btn:nth-child(1) {
    animation: slideUp 0.4s ease forwards 0.1s;
}

.social-buttons-container.active .floating-btn:nth-child(2) {
    animation: slideUp 0.4s ease forwards 0.2s;
}

.social-buttons-container.active .floating-btn:nth-child(3) {
    animation: slideUp 0.4s ease forwards 0.3s;
}

.social-buttons-container.active .floating-btn:nth-child(4) {
    animation: slideUp 0.4s ease forwards 0.4s;
}

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

.floating-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.floating-btn.instagram:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(188, 24, 136, 0.4);
}

.floating-btn.facebook {
    background: #1877f2;
}

.floating-btn.facebook:hover {
    background: #166fe5;
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(24, 119, 242, 0.4);
}

.floating-btn.tiktok {
    background: #000;
}

.floating-btn.tiktok:hover {
    background: #ff0050;
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 0, 80, 0.4);
}

.floating-btn.whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
}

.floating-btn.whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(102, 126, 234, 0.5);
    }
    100% {
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }
}

@media (max-width: 12000px) {
    .floating-social-container {
        bottom: 20px;
        right: 15px;
    }
    
    .floating-main-btn {
        width: 65px;
        height: 65px;
    }

    .arrow-icon {
        width: 24px;
        height: 24px;
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
    }
    
    .floating-btn img,
    .floating-btn svg {
        width: 24px !important;
        height: 24px !important;
    }
}

@media (max-width: 480px) {
    .floating-social-container {
        bottom: 15px;
        right: 10px;
    }
    
    .floating-main-btn {
        width: 60px;
        height: 60px;
    }
    
    .arrow-icon {
        width: 22px;
        height: 22px;
    }
    
    .floating-btn {
        width: 40px;
        height: 40px;
    }
    
    .floating-btn img,
    .floating-btn svg {
        width: 20px !important;
        height: 20px !important;
    }
    
    .social-buttons-container {
        gap: 10px;
        bottom: 80px;
    }
}

.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    border-radius: 15px;
    padding: 25px;
    width: 320px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: slideInUp 0.3s ease-out;
}

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

.modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.modal-header h3 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.modal-header p {
    color: #666;
    font-size: 0.9rem;
}

.contact-option {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
}

.contact-option:hover {
    border-color: #25D366;
    background: #f8fff8;
    transform: translateX(5px);
}

.contact-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.contact-info h4 {
    margin-bottom: 3px;
    color: #2c3e50;
}

.contact-info p {
    font-size: 0.85rem;
    color: #666;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.close-modal:hover {
    color: #333;
}

.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Código CSS del footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 30px;
}

.footer-content-custom {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section {
    max-width: 500px;
}

.logo-section {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    border-right: 2px solid white;
    padding-right: 40px;
}

.footer-logo {
    height: 80px;
    margin-bottom: 15px;
}

.contact-info-footer-custom {
    font-size: 1rem;
    line-height: 1.5;
}

.social-links-footer {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-links-footer .social-link {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3b5998;
}

.social-links-footer .social-link img {
    width: 20px;
    height: 20px;
}

.about-and-destinations {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 40px;
}

.destinos-populares-footer {
    margin-top: 20px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #bdc3c7;
}

.email-option {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
}

.email-option:hover {
    border-color: #3498db;
    background: #f8f9ff;
    transform: translateX(5px);
}

.email-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.email-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    transition: all 0.3s ease;
    align-self: center;
    margin: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1998;
    backdrop-filter: blur(3px);
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -60%;
    width: 60%;
    height: 100%;
    background: white;
    z-index: 1999;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.mobile-menu-header h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin: 0;
}

.close-mobile-menu {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-mobile-menu:hover {
    background: #e9ecef;
    color: #333;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    border-bottom: 1px solid #eee;
}

.mobile-nav-links li a {
    display: block;
    padding: 18px 20px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mobile-nav-links li a:hover {
    background: #f8f9fa;
    color: #3498db;
    padding-left: 30px;
}

/* MEDIA QUERIES RESPONSIVAS */

/* Extra Large Devices (Large Desktops) */
@media (min-width: 950px) {
    .container {
        max-width: 1400px;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* Large Devices (Desktops) */
@media (min-width: 992px) and (max-width: 1199px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-links {
        gap: 25px;
    }
}

/* Medium Devices (Tablets) */
@media (min-width: 769px) and (max-width: 991px) {
    .nav-links {
        gap: 20px;
    }
    
    .nav-links li a {
        font-size: 0.9rem;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-content {
        gap: 30px;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .floating-btn {
        width: 60px;
        height: 60px;
    }
    
    .floating-btn img {
        width: 30px;
        height: 30px;
    }
}

/* Small Devices (Mobile) */
@media (max-width: 950px) {
    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        min-height: 70px;
        flex-direction: row;
    }
    
    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px;
        margin: 0;
        height: auto;
        order: 2;
    }
    
    .navbar-brand {
        display: flex;
        align-items: center;
        order: 1;
    }
    
    .desktop-menu {
        display: none;
    }

    .hero {
        margin-top: 80px;
        height: 80vh;
        padding: 20px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .destinations {
        padding: 60px 0;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .destination-card img {
        height: 200px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 15px;
        flex-direction: column;
        gap: 10px;
    }
    
    .floating-btn {
        width: 60px;
        height: 60px;
    }
    
    .floating-btn img {
        width: 30px;
        height: 30px;
    }
    
    .modal-content {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 15px 15px 0 0;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content-custom {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 30px;
    }

    .logo-section {
        align-items: center;
        border-right: none;
        border-bottom: 2px solid white;
        padding-right: 0;
        padding-bottom: 30px;
    }

    .about-and-destinations {
        padding-left: 0;
    }

    .social-links-footer {
        justify-content: center;
    }
    
    .footer-logo {
        height: 60px;
    }
    
    .contact-info-footer-custom {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding-top: 15px;
        font-size: 0.9rem;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo {
        height: 40px;
    }
    
    .hero {
        height: 70vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 10px 25px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .card-content {
        padding: 15px;
    }
    
    .card-content h3 {
        font-size: 1.3rem;
    }
    
    .price {
        font-size: 1.2rem;
    }
    
    .about-text h2 {
        font-size: 1.6rem;
    }
    
    .floating-buttons {
        bottom: 15px;
        right: 10px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    
    .floating-btn img {
        width: 25px;
        height: 25px;
    }
    
    .mobile-menu {
        width: 85%;
        right: -85%;
    }
    
    .modal-content {
        padding: 20px;
    }
    
    .contact-option {
        padding: 12px;
    }
    
    .contact-avatar {
        width: 40px;
        height: 40px;
        margin-right: 12px;
    }
    
    .contact-info h4 {
        font-size: 0.9rem;
    }
    
    .contact-info p {
        font-size: 0.8rem;
    }
}

/* Landscape Mobile Devices */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        padding: 10px;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .cta-button {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}