body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
    background-color: #1a1a1a;
}


/* Header con logo */
.header {
    
    padding: 0px 30px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	height: 1px;
}

.logo-placeholder {
    width: 170px;
    height: 170px;
   
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
  
    overflow: hidden;
  

}

.logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.carousel {
    position: relative;
    height: 350px;
    overflow: hidden;
}
.carousel-nav-button {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    transition: background-color 0.3s;
}

.carousel-nav-button.active {
    background-color: #fff;
}
.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding: 40px;
    box-sizing: border-box;
}
.carousel-item.active {
    opacity: 1;
}
.carousel-content {
    max-width: 50%;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}
.carousel-title {
    font-size: 1.2em;
    margin-bottom: 8px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.carousel-subtitle {
    font-size: 0.9em;
    margin-bottom: 15px;
    font-weight: 300;
}
.cta-button {
    background-color: #00997C;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.8em;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}


.cta-button:hover {
    background-color: #fff;
    color: #00997C;
}
.carousel-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.carousel-nav button {
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.carousel-nav button.active {
    background-color: #fff;
}
.countdown {
    font-size: 16px;
    margin: 30px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 15px;
}
.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.countdown-number {
    font-size: 1.8em;
    font-weight: bold;
    background-color: #00997C;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    min-width: 60px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 
                0 1px 3px rgba(0, 0, 0, 0.08);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    transform: perspective(500px) rotateX(10deg);
    transition: transform 0.3s ease;
}
.countdown-number:hover {
    transform: perspective(500px) rotateX(0deg);
}
.countdown-label {
    margin-top: 5px;
    font-size: 0.7em;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.description-title {
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #00997C;
}
.description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}
.content-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 15px;
}
.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-right: 15px;
}
.contact-form input, .contact-form textarea {
    
    padding: 10px;
    margin-bottom: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 5px;
}
.contact-form button {
    background-color: #00997C;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
}
.contact-form button:hover {
    background-color: #fff;
    color: #00997C;
}
.map {
    flex: 1;
    height: 300px;
    background-color: #333;
    border-radius: 10px;
    overflow: hidden;
}



/* Estilos responsivos */
@media (max-width: 768px) {
    .carousel {
        height: 250px;
    }
    .carousel-content {
        max-width: 80%;
    }
    .carousel-title {
        font-size: 1em;
    }
    .carousel-subtitle {
        font-size: 0.8em;
    }
    .cta-button {
        font-size: 0.7em;
        padding: 6px 12px;
    }
    .countdown {
        gap: 10px;
        margin: 20px 0;
    }
    .countdown-number {
        font-size: 1.5em;
        min-width: 50px;
        padding: 8px;
    }
    .countdown-label {
        font-size: 0.6em;
    }
    .content-wrapper {
        flex-direction: column;
    }
    .contact-form, .map {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
	
	.logo-placeholder {
    width: 140px;
    height: 140px;

}
	
}

@media (max-width: 480px) {
    .carousel {
        height: 200px;
    }
    .carousel-content {
        max-width: 90%;
        padding: 10px;
    }
    .carousel-title {
        font-size: 0.9em;
    }
    .carousel-subtitle {
        font-size: 0.7em;
    }
    .cta-button {
        font-size: 0.6em;
        padding: 5px 10px;
    }
    .countdown {
        gap: 5px;
        margin: 15px 10px;
    }
    .countdown-number {
        font-size: 1.2em;
        min-width: 40px;
        padding: 6px;
    }
    .countdown-label {
        font-size: 0.5em;
    }
    .contact-form {
        padding: 15px;
        width: 90%;
    }
    .contact-form input, .contact-form textarea {
        padding: 8px;
        margin-bottom: 10px;
        font-size: 14px;
    }
    .contact-form textarea {
        height: 100px;
    }
    .contact-form button {
        padding: 8px 16px;
        font-size: 14px;
    }
    .container {
        padding: 10px;
    }
	
		.logo-placeholder {
    width: 90px;
    height: 90px;

}

    /* Css de boton de whatsapp */

    footer .container-redes {
        position: fixed;
        bottom: 20px;
        right: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
     footer .container-redes img {
        width: 60px;
        padding: 4px;
        background: rgba(0, 0, 0, 0.0);
        cursor: pointer;
        border-radius: 100%;
        transition: all 300ms;
    }

}