.terms,
.cookie,
.return,
.disclaimer,
.refund,
.privacy {
  text-align: left;
  padding: 15rem 0;
}
/* Base styles */
html {
    font-size: 10px;
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: #43a9c1;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2c7d93;
}

ul, ol {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    border-radius: 3rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background-color: #43a9c1;
    color: #fff;
}

.btn-primary:hover {
    background-color: #2c7d93;
    color: #fff;
}

.btn-secondary {
    background-color: #fff;
    color: #43a9c1;
    border: 1px solid #43a9c1;
}

.btn-secondary:hover {
    background-color: #f5f5f5;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 2rem;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 120rem;
    margin: 0 auto;
    text-align: center;
}

.cookie-content h2 {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Header */
.header {
    background-color: #43a9c1;
    color: #fff;
    padding: 2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.nav-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.nav-list a {
    color: #fff;
    font-weight: 500;
}

.nav-list a:hover {
    color: #e6e6e6;
}

/* Hero Section */
.hero {
    background: url('./img/main.jpg') center/cover no-repeat;
    background-color: #43a9c1;
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.8rem;
    max-width: 80rem;
    margin: 0 auto 3rem;
}

/* Servicios Section */
.servicios {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 2rem;
}

.section-subtitle {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto 4rem;
}

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

.plan {
    background-color: #fff;
    border-radius: 0.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 3rem 2rem;
    flex: 1 1 30rem;
    display: flex;
    flex-direction: column;
}

.plan-title {
    font-size: 2rem;
    color: #43a9c1;
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.price {
    font-size: 2.4rem;
    font-weight: 700;
}

.plan-features {
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 2rem;
}

.plan-features li::before {
    content: '•';
    color: #43a9c1;
    position: absolute;
    left: 0;
}

/* Estrategia Section */
.estrategia {
    padding: 6rem 0;
}

.estrategia-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.estrategia-image {
    flex: 1 1 30rem;
}

.estrategia-image img {
    width: 100%;
    height: auto;
    border-radius: 0.8rem;
}

.estrategia-text {
    flex: 1 1 40rem;
}

/* Eventos Section */
.eventos {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

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

.evento {
    flex: 1 1 30rem;
    background-color: #fff;
    border-radius: 0.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 3rem 2rem;
}

.evento-title {
    color: #43a9c1;
    font-size: 1.8rem;
}

.evento-date {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Preguntas Section */
.preguntas {
    padding: 6rem 0;
}

.preguntas-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.pregunta {
    flex: 1 1 45rem;
    margin-bottom: 2rem;
}

.pregunta-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #43a9c1;
}

/* Contacto Section */
.contacto {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

.contact-intro {
    text-align: center;
    max-width: 70rem;
    margin: 0 auto 3rem;
}

form {
    max-width: 60rem;
    margin: 0 auto;
}

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

input, textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 0.4rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
}

textarea {
    min-height: 15rem;
    resize: vertical;
}

form button {
    width: 100%;
}

/* Footer */
.footer {
    background-color: #43a9c1;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 2.4rem;
    margin-bottom: 0;
}

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

.social-icon {
    display: inline-block;
    width: 4rem;
    height: 4rem;
    background-color: #fff;
    border-radius: 50%;
    position: relative;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2.4rem;
    height: 2.4rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.linkedin::before {
    background-image: url('./img/linkedin.svg');
}

.facebook::before {
    background-image: url('./img/facebook.svg');
}

.twitter::before {
    background-image: url('./img/twitter.svg');
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

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

.footer-links a {
    color: #fff;
}

.footer-links a:hover {
    color: #e6e6e6;
}

/* Success Page */
.success-header, 
.success-footer {
    background-color: #43a9c1;
}

.success-main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.success-message {
    text-align: center;
    padding: 5rem 0;
}

.success-title,
.success-subtitle {
    margin-bottom: 1.5rem;
}

/* Media Queries */
@media (min-width: 768px) {
    .header .container {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .logo {
        margin-bottom: 0;
    }
    
    .hero-title {
        font-size: 3.6rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 4.2rem;
    }
    
    .cookie-content {
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-buttons {
        align-self: flex-end;
    }
}

@media (min-width: 1200px) {
    .hero {
        padding: 8rem 0;
    }
}