/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

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




/* HEADER */
header {
    background: #2a832ec5;
    border-bottom: 1px solid #2e853b71;
    padding: 15px 40px;
}
 form{      
     display: flex; 
     flex-direction:  column;

     align-items: center; 
     margin: 50px;
   
}

.contact-info {
    font-size: 14px;
    text-align: right;
    margin-bottom: 10px;
    color: #777;
}

.logo img {
    max-width: 180px;
}

/* NAV */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 10px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover {
    color: #c89b3c; /* dorado elegante */
}

/* HERO */
.hero {
    background: url("mar.jpg") center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

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

/* BOTONES */
.btn {
    display: inline-block;
    background: #c89b3c;
    color: white;
    padding: 12px 25px;
    margin: 5px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease-out;
    transform: scale(1.05);
}

.btn:hover {
    background: #211e6d;
    transform: scale(1.1);
    opacity: 0.9;
}

/* SECCIONES */
section {
    padding: 60px 40px;
    text-align: center;
}

section h2 {
    margin-bottom: 30px;
    font-size: 28px;
}

/* DESTINOS */
.destinos ul {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    list-style: none;
}

 .destinos :hover li {
    background: #932c44;
    padding: 15px 25px;
    border-radius: 6px;
    color: yellowgreen;
    transform: scale(1.1);
}

/* BLOG */
.blog-home article {
    margin-bottom: 25px;
}

.blog-home a {
    color: #c89b3c;
    text-decoration: none;
}
.contacto{      
    background: #f4f4f47a;
    padding: 20px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 20px;}

.footer-shadow {
  height: 100px; /* altura del sombreado */
  background: linear-gradient(to top, rgba(172, 9, 9, 0.445), transparent);
}
.iconopalmera{

               display: flex;           /* Activa Flexbox */
              justify-content: center; /* Centra horizontalmente */
              align-items: center;     /* Centra verticalmente */
              height: 100px;           /* Altura del contenedor */
               width: 100px;            /* Ancho del contenedor */
                  border: 1px solid #ccc;  /* Solo para ver el contenedor */
                
                }

.icono img{width: 100px;}

.icono{text-align: center;}
/* FOOTER */
footer {
    background: #222;
    color: #ccc;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.5);
}







/* RESPONSIVE */
@media screen and (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 26px;
    }

    section {
        padding: 40px 20px;
    }
}