 /* Reseteo de estilos */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* Estilos de cabecera */
header {
    background-color: #e63e32;
    color: white;
    text-align: center;
    padding: 0.5rem 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

/* Hero section */
.hero {
    background-color: #2c3539;
    color: white;
    padding: 8rem 2rem 4rem;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('./imgs/1.png');
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    max-width: 800px;
}

.hero p {
    max-width: 600px;
    margin-bottom: 2rem;
}

/* Sección de paquetes */
.packages {
    padding: 4rem 2rem;
    text-align: center;
    background-color: white;
}

.packages h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.package-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.package-card {
    background-color: #f5f5f5;
    border-radius: 5px;
    padding: 2rem;
    width: 100%;
    max-width: 350px;
    text-align: left;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.package-card h3 {
    margin-bottom: 0.5rem;
    text-align: center;
}

.package-price {
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
}

.package-card ul {
    list-style-type: none;
    margin-bottom: 2rem;
}

.package-card li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.package-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e63e32;
}

.btn {
    display: inline-block;
    background-color: #e63e32;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #d32f2f;
}

.btn-outline {
    background-color: white;
    color: #e63e32;
    border: 2px solid #e63e32;
}

.btn-outline:hover {
    background-color: #e63e32;
    color: white;
}

/* Sección ¿Por qué elegirnos? */
.why-us {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #f5f5f5;
}

.why-us h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.experts-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.expert-card {
    background-color: white;
    border-radius: 5px;
    width: 100%;
    max-width: 300px;
    padding-bottom: 1.5rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

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

.expert-info {
    padding: 1.5rem;
}

.expert-info h3 {
    margin-bottom: 0.5rem;
}

.metodology-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.metodology-box {
    background-color: white;
    border-radius: 5px;
    padding: 2rem;
    width: 100%;
    max-width: 500px;
    text-align: left;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.metodology-box h3 {
    margin-bottom: 1rem;
}

/* Sección de testimonios */
.testimonials {
    background-color: #222;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.testimonial-card {
    background-color: #333;
    border-radius: 5px;
    padding: 2rem;
    width: 100%;
    max-width: 500px;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: bold;
}

/* Sección CTA */
.cta {
    background-color: #222;
    color: white;
    padding: 3rem 2rem 4rem;
    text-align: center;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Sección de contacto */
.contact {
    padding: 4rem 2rem;
    background-color: #222;
    color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.contact-info {
    width: 100%;
    max-width: 400px;
}

.contact h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.contact p {
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-bottom: 1.5rem;
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

.form-group {
    margin-bottom: 1rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: white;
}

.form-control::placeholder {
    color: #aaa;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: #111;
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #222;
    color: white;
    padding: 2rem;
    z-index: 999;
}

.cookie-banner h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cookie-types {
    margin: 1.5rem 0;
}

.cookie-types li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.cookie-types li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e63e32;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .package-container, .experts-container, .metodology-container, .testimonial-container {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .contact {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}