* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Reglas globales para enlaces */
a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #e7520f;
}

/* Estilos específicos para enlaces del contenido principal */
.content-section a {
    color: #008888;
}

.content-section a:visited {
    color: #006666;
}

.content-section a:hover {
    color: #00a5a4;
}

.content-section a:active {
    color: #b33f0a;
}

/* Header y Navbar */
.header {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    width: 85%;
    margin: 0 auto;
}

.logo {
    height: auto;
    width: auto;
    max-height: 60px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #00a5a4;
}

.search-container {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 25px;
    padding: 0.5rem 1rem;
    min-width: 250px;
}

.search-input {
    border: none;
    background: none;
    outline: none;
    flex: 1;
    padding: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.search-btn {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: #0066cc;
}

.social-cards {
    display: flex;
    gap: 0.5rem;
}

.social-card {
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #666;
    transition: all 0.3s ease;
}

.social-card:hover {
    background-color: #e7520f;
    color: white;
    transform: translateY(-2px);
}

/* Menú Hamburguesa */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Banner */
.banner {
    width: 100%;
    display: block;
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

/* Contenido Principal */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #e7520f;   
    margin-bottom: 1.5rem;
}

/* Reglas reutilizables de espacios verticales */
.margin-bottom-10 {
    margin-bottom: 0.625rem; /* 10px */
}

.margin-bottom-20 {
    margin-bottom: 1.25rem; /* 20px */
}

.margin-bottom-30 {
    margin-bottom: 1.875rem; /* 30px */
}

.margin-bottom-40 {
    margin-bottom: 2.5rem; /* 40px */
}

.margin-bottom-50 {
    margin-bottom: 3.125rem; /* 50px */
}

.margin-bottom-60 {
    margin-bottom: 3.75rem; /* 60px */
}

.margin-bottom-70 {
    margin-bottom: 4.375rem; /* 70px */
}

.margin-bottom-80 {
    margin-bottom: 5rem; /* 80px */
}

.margin-bottom-90 {
    margin-bottom: 5.625rem; /* 90px */
}

.margin-bottom-100 {
    margin-bottom: 6.25rem; /* 100px */
}

/* Reglas reutilizables de espacios verticales con margin-top */
.margin-top-10 {
    margin-top: 0.625rem; /* 10px */
}

.margin-top-20 {
    margin-top: 1.25rem; /* 20px */
}

.margin-top-30 {
    margin-top: 1.875rem; /* 30px */
}

.margin-top-40 {
    margin-top: 2.5rem; /* 40px */
}

.margin-top-50 {
    margin-top: 3.125rem; /* 50px */
}

.margin-top-60 {
    margin-top: 3.75rem; /* 60px */
}

.margin-top-70 {
    margin-top: 4.375rem; /* 70px */
}

.margin-top-80 {
    margin-top: 5rem; /* 80px */
}

.margin-top-90 {
    margin-top: 5.625rem; /* 90px */
}

.margin-top-100 {
    margin-top: 6.25rem; /* 100px */
}

.content-section h1.seo {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: #666;
    margin-top: 0;
    margin-top: 3.125rem;
    text-align: left;
    opacity: 0.7;
}

.content-section h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: #1b1b1b;
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
}

.content-section h3 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 600;
    color: #1b1b1b;
    margin-top: 3.5rem;
    margin-bottom: 1rem;
}

.content-section h4 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
    color: #1b1b1b;
    margin-top: 3.125rem;
    margin-bottom: 0.8rem;
}

.content-section h5 {
    font-size: clamp(1.1rem, 2.5vw, 1.2rem);
    font-weight: 600;
    color: #1b1b1b;
    margin-top: 3.125rem;
    margin-bottom: 0.6rem;
}

.content-section h6 {
    font-size: clamp(1rem, 2vw, 1rem);
    font-weight: 600;
    color: #1b1b1b;
    margin-top: 3.125rem;
    margin-bottom: 0.5rem;
}

.content-section p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #000;
}

.content-section ul {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #000;
    padding-left: 1.5rem;
    list-style: none;
}

.content-section ul li {
    position: relative;
    margin-bottom: 0.8rem;
    padding-left: 1.2rem;
}

.content-section ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #e7520f;
    font-size: 0.9em;
    line-height: 1.8;
    font-weight: bold;
}

/* Footer */
.footer {
    width: 100%;
    background-color: #141414;
    color: white;
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.footer-logo {
    height: auto;
    width: auto;
    margin-bottom: 2rem;
    max-width: 100%;
}

.footer-text {
    font-size: clamp(0.8rem, 2vw, 0.85rem);
    line-height: 1.6;
    width: 85%;
    margin: 0 auto;
}

.footer a {
    color: #ee7404;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #c4c4c4;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-content {
        max-width: 768px;
        padding: 3rem 1.5rem;
    }

    .banner img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .nav-right {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .nav-right.active {
        display: flex;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .search-container {
        width: 100%;
        min-width: auto;
    }

    .social-cards {
        justify-content: center;
    }

    .hamburger {
        display: flex;
    }

    .main-content {
        max-width: 100%;
        padding: 2rem 1rem;
    }

    .footer {
        padding: 2rem 1rem;
    }

    .footer-logo {
        max-width: 300px;
    }

    .banner img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        max-width: 250px;
    }

    .banner img {
        max-width: 100%;
        height: auto;
    }
}
