/* Reset y Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Banner de Politicas Fijo */
.policies-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2563eb;
    color: white;
    padding: 16px 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.policies-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 768px) {
    .policies-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.policies-text {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
}

.policies-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.policies-title {
    font-weight: 600;
    font-size: 14px;
}

.policies-subtitle {
    font-size: 12px;
    color: #bfdbfe;
    margin-top: 4px;
}

.policies-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-accept {
    background-color: white;
    color: #2563eb;
    border: none;
    padding: 8px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept:hover {
    background-color: #eff6ff;
}

.btn-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 8px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Header */
.header {
    background-color: #2563eb;
    color: white;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
}

.nav {
    display: none;
    gap: 32px;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}

.nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav a:hover {
    color: #bfdbfe;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 16px 20px;
    background-color: #1d4ed8;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    color: white;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav a:last-child {
    border-bottom: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 80px 20px;
}

.hero-title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
}

.hero-subtitle {
    font-size: 18px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 8px;
    color: #bfdbfe;
}

.hero-note {
    font-size: 14px;
    text-align: center;
    font-style: italic;
    color: #93c5fd;
    margin-bottom: 40px;
}

.hero-banners {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.banner-item {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    overflow: hidden;
}

.banner-header {
    width: 100%;
    background: none;
    border: none;
    color: white;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: left;
}

.banner-header:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.banner-header span {
    flex: 1;
}

.chevron {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.banner-item.active .chevron {
    transform: rotate(180deg);
}

.banner-content {
    display: none;
    padding: 0 24px 16px;
    color: #bfdbfe;
}

.banner-item.active .banner-content {
    display: block;
}

/* Services Section */
.section-white {
    padding: 80px 20px;
    background-color: white;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    color: #1e40af;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 36px;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.service-icon {
    padding: 16px;
    display: flex;
    justify-content: center;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
}

.service-icon.blue {
    background-color: #2563eb;
}

.service-card h3 {
    padding: 0 24px;
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
}

.service-card p {
    padding: 0 24px;
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.6;
}

.btn-link {
    background: none;
    border: none;
    color: #2563eb;
    padding: 0 24px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.btn-link:hover {
    color: #1d4ed8;
}

/* Info Banners */
.info-banners {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-banner {
    background-color: #2563eb;
    border-radius: 8px;
    overflow: hidden;
}

.info-header {
    width: 100%;
    background: none;
    border: none;
    color: white;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: left;
}

.info-header:hover {
    background-color: #1d4ed8;
}

.info-header span {
    flex: 1;
}

.info-content {
    display: none;
    padding: 0 24px 16px;
    color: white;
    white-space: pre-line;
    line-height: 1.8;
}

.info-banner.active .info-content {
    display: block;
}

.info-banner.active .info-header {
    background-color: #1d4ed8;
}

/* Contact Section */
.contact-section {
    background-color: white;
    border-top: 4px solid #2563eb;
    padding: 80px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-card {
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.contact-icon {
    width: 32px;
    height: 32px;
    stroke: #2563eb;
    margin-bottom: 12px;
}

.contact-label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contact-value {
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-note {
    font-size: 12px;
    color: #6b7280;
}

/* Footer */
.footer {
    background-color: white;
    border-top: 4px solid #2563eb;
    padding: 40px 20px;
    text-align: center;
    color: #333;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-icon {
    width: 24px;
    height: 24px;
    stroke: #2563eb;
}

.footer-logo span {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.footer-note {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-made {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-copy {
    color: #9ca3af;
    font-size: 12px;
    margin-top: 16px;
}

/* Espaciado para banner fijo */
body {
    padding-bottom: 100px;
}
