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

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

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

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

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.2rem;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

section {
    padding: 5rem 0;
}

/* Header styles */
header {
    background-color: #111;
    color: #fff;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo a {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ff6347;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: #fff;
    font-size: 1.6rem;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff6347;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.primary-btn {
    background-color: #ff6347;
    color: #fff;
    border: 2px solid #ff6347;
}

.primary-btn:hover {
    background-color: transparent;
    color: #ff6347;
}

.secondary-btn {
    background-color: transparent;
    color: #ff6347;
    border: 2px solid #ff6347;
}

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

/* Hero section */
.hero {
    background-color: #111;
    color: #fff;
    padding: 8rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.6rem;
    margin-bottom: 2rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
    font-size: 1.8rem;
}

/* Showcase sections */
.showcase, .showcase-bottom {
    padding: 0;
}

.showcase-images {
    display: flex;
    flex-wrap: wrap
}

.image-item img {
    width: 100%;
    height: 25rem;
    object-fit: cover;
    display: block;
}

/* Services section */
.servicios {
    text-align: center;
    padding: 6rem 0;
}

.servicios-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
}

.servicio-card {
    background: #fff;
    color: #000;
    border-radius: 1rem;
    padding: 3rem 2rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.servicio-card:hover {
    transform: translateY(-0.5rem);
}

.icon {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 2rem;
    background-color: #ff634720;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon img {
    width: 3rem;
    height: 3rem;
}

/* Plans section */
.planes {
    text-align: center;
    padding: 6rem 0;
}

.planes-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
}

.plan-card {
    color: #000;
    background: #fff;
    border-radius: 1rem;
    padding: 3rem 2rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plan-card.featured {
    border: 2px solid #ff6347;
    transform: scale(1.05);
}

.plan-card:hover {
    transform: translateY(-0.5rem);
}

.plan-card.featured:hover {
    transform: translateY(-0.5rem) scale(1.05);
}

.plan-card h3 {
    color: #ff6347;
}

.plan-card ul {
    text-align: left;
    margin-bottom: 2rem;
}

.plan-card ul li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.plan-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6347;
}

.precio {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.periodo {
    font-size: 1.6rem;
    color: #777;
    font-weight: 400;
}

/* Testimonials section */
.testimonios {
    text-align: center;
    padding: 6rem 0;
}

.testimonios-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
}

.testimonio-card {
    background: #fff;
    color: #000;
    border-radius: 1rem;
    padding: 3rem 2rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    text-align: left;
}

.testimonio-card > p {
    font-style: italic;
    margin-bottom: 2rem;
}

.cliente h4 {
    margin-bottom: 0.5rem;
    color: #ff6347;
}

.cliente p {
    font-size: 1.4rem;
    color: #777;
    margin-bottom: 0.5rem;
}

.rating {
    color: #ffc107;
}

/* CTA section */
.cta {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 6rem 0;
}

.cta h2 {
    margin-bottom: 2rem;
}

.cta p {
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

/* Contact section */
.contacto {
    padding: 6rem 0;
    text-align: center;
}

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

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

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

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

/* Footer styles */
footer {
    background-color: #111;
    color: #fff;
    padding: 5rem 0 2rem;
}

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

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #111;
    color: #fff;
    padding: 2rem;
    z-index: 1000;
    box-shadow: 0 -0.5rem 1rem rgba(0, 0, 0, 0.2);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 120rem;
    margin: 0 auto;
    text-align: center;
}

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

@media (min-width: 768px) {
  .testimonio-card,
    .plan-card,
    .servicio-card,
    .image-item{
      width: 33%;
    }
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}
