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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    height: 64px;
}

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

.logo-img {
    height: 32px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: #1351b4;
    letter-spacing: -0.5px;
}

.logo-highlight {
    color: #34a853;
}

.nav-auth {
    display: flex;
    align-items: center;
}

.login-btn {
    background-color: #1351b4;
    color: white;
    border: none;
    border-radius: 24px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
    min-height: 40px;
}

.user-icon {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.main-content {
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.breadcrumb-separator {
    color: #999;
}

.breadcrumb-item.current {
    color: #1351b4;
    font-weight: 500;
}

.program-title {
    color: #d73027;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.4;
}

.content-section {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.main-title {
    color: #666;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

.subtitle {
    color: #1351b4;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.3;
}

.description {
    margin-bottom: 30px;
}

.description p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.description strong {
    color: #1351b4;
    font-weight: 600;
}

.share-section {
    margin-bottom: 30px;
}

.share-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.share-buttons {
    display: flex;
    gap: 8px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-btn.facebook {
    background-color: #1877f2;
    color: white;
}

.share-btn.twitter {
    background-color: #1da1f2;
    color: white;
}

.share-btn.linkedin {
    background-color: #0077b5;
    color: white;
}

.share-btn.whatsapp {
    background-color: #25d366;
    color: white;
}

.share-btn.copy {
    background-color: #666;
    color: white;
}

.publication-date {
    font-size: 12px;
    color: #999;
    text-align: right;
}

.cnh-hero-section {
    margin-bottom: 40px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
}

.info-section {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-intro {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.info-letter {
    font-size: 48px;
    font-weight: 700;
    color: #1351b4;
    line-height: 1;
    flex-shrink: 0;
}

.info-intro p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.info-card {
    background-color: #1351b4;
    color: white;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #0d4187;
}

.info-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.info-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.access-btn {
    background-color: #40B13D;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 hsla(147, 80.90%, 39.00%, 0.70);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(19, 81, 180, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(19, 81, 180, 0);
    }
}

.program-details {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.detail-section {
    margin-bottom: 25px;
}

.detail-section h3 {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.detail-section p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.benefits-list li:before {
    content: "•";
    color: #1351b4;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.benefits-list strong {
    color: #333;
}

.fee-section {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.fee-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.fee-value {
    font-size: 20px;
    font-weight: 700;
    color: #1351b4;
    margin-bottom: 15px;
}

.fee-section p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.registration-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-icon {
    background-color: #1351b4;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.register-btn {
    background-color: #1351b4;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

.security-info {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.categories-section {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.categories-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.categories-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1351b4;
    margin-bottom: 15px;
}

.categories-section p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.categories-list {
    list-style: none;
    padding: 0;
}

.categories-list li {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.categories-list li:before {
    content: "•";
    color: #1351b4;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.categories-list strong {
    color: #333;
}

.benefits-section {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.benefits-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.benefit-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.benefit-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.requirements-section {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.requirements-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.requirement-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
}

.requirement-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.requirement-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 12px 16px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .login-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .user-icon {
        width: 16px;
        height: 16px;
    }
    
    .main-content {
        padding: 16px;
    }
    
    .content-section,
    .info-section,
    .program-details,
    .categories-section,
    .benefits-section,
    .requirements-section {
        padding: 20px;
    }
    
    .main-title {
        font-size: 24px;
    }
    
    .subtitle {
        font-size: 20px;
    }
    
    .breadcrumb {
        flex-wrap: wrap;
        gap: 4px;
    }
    
    .info-intro {
        flex-direction: column;
        gap: 10px;
    }
    
    .info-letter {
        font-size: 36px;
    }
    
    .registration-card .card-content h3 {
        font-size: 16px;
        gap: 12px;
    }
    
    .registration-card .card-icon {
        width: 40px;
        height: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 8px 12px;
    }
    
    .logo-img {
        height: 28px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .login-btn {
        padding: 8px 14px;
        font-size: 12px;
        border-radius: 20px;
    }
    
    .main-title {
        font-size: 20px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
    
    .info-card h3 {
        font-size: 18px;
    }
    
    .detail-section h3 {
        font-size: 18px;
    }
    
    .categories-section h2,
    .benefits-section h2,
    .requirements-section h2 {
        font-size: 20px;
    }
}.presidential-quote {
    margin-bottom: 30px;
}

.quote-card {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid #f0d43a;
    border-left: 4px solid #f1c40f;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.president-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.president-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f39c12;
}

.president-details h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.president-details h5 {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    margin-bottom: 5px;
}

.president-title {
    font-size: 14px;
    color: #888;
    margin: 0;
}

.quote-text {
    font-size: 18px;
    font-style: italic;
    color: #2c3e50;
    line-height: 1.6;
    margin: 0;
    padding-left: 20px;
    border-left: 3px solid #f39c12;
}

.consolidation-section {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.consolidation-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1351b4;
    margin-bottom: 30px;
    text-align: center;
}

.consolidation-section p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.minister-quote {
    background: #f8f9fa;
    border-left: 4px solid #1351b4;
    padding: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #333;
    line-height: 1.6;
}

.impact-section {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.impact-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1351b4;
    margin-bottom: 30px;
    text-align: center;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #1351b4;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #1351b4;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.impact-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.advantages-section {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.advantages-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1351b4;
    margin-bottom: 30px;
    text-align: center;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.advantage-item {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.advantage-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #1351b4;
}

.advantage-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1351b4;
    margin-bottom: 12px;
}

.advantage-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .presidential-quote,
    .consolidation-section,
    .impact-section,
    .advantages-section {
        padding: 20px;
    }
    
    .quote-card {
        padding: 20px;
    }
    
    .president-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .president-image {
        width: 70px;
        height: 70px;
    }
    
    .quote-text {
        font-size: 16px;
        padding-left: 15px;
        text-align: center;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .consolidation-section h2,
    .impact-section h2,
    .advantages-section h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .quote-text {
        font-size: 15px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .advantage-item {
        padding: 20px;
    }
    
    .advantage-item h4 {
        font-size: 16px;
    }
    
    .advantage-item p {
        font-size: 14px;
    }
}/* Footer Styles */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 40px 0 20px 0;
    margin-top: 40px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.footer-logo-img {
    height: 32px;
    width: auto;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 600;
    color: white;
    letter-spacing: -0.5px;
}

.footer-logo-highlight {
    color: #34a853;
}

.footer-menu {
    border-top: 1px solid #374151;
    padding-top: 20px;
    margin-bottom: 30px;
}

.footer-menu-section {
    border-bottom: 1px solid #374151;
}

.footer-menu-button {
    width: 100%;
    background: none;
    border: none;
    color: white;
    padding: 15px 0;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-menu-button:hover {
    color: #d1d5db;
}

.footer-menu-arrow {
    color: #9ca3af;
    transform: rotate(0deg);
    transition: transform 0.2s ease;
}

.footer-menu-button:hover .footer-menu-arrow {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-cookies {
    flex: 1;
}

.footer-cookies-btn {
    background: none;
    border: none;
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.footer-cookies-btn:hover {
    color: #d1d5db;
}

.footer-cookies-icon {
    color: #9ca3af;
}

.footer-social {
    flex: 1;
    text-align: center;
}

.footer-social-title {
    font-size: 14px;
    font-weight: 500;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.footer-social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-info-button {
    background-color: #1351b4;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    line-height: 1.2;
    min-height: 48px;
}

.footer-info-button:hover {
    background-color: #0f3a7a;
}

.footer-info-icon {
    color: white;
    flex-shrink: 0;
}

.footer-info-button span {
    text-align: left;
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 0 20px 0;
    }
    
    .footer-container {
        padding: 0 16px;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 25px;
    }
    
    .footer-logo-text {
        font-size: 20px;
    }
    
    .footer-menu {
        margin-bottom: 25px;
    }
    
    .footer-menu-button {
        padding: 12px 0;
        font-size: 13px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-cookies,
    .footer-social {
        flex: none;
        width: 100%;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
    
    .footer-info-button {
        align-self: center;
        padding: 10px 14px;
        font-size: 11px;
        min-height: 44px;
    }
}

@media (max-width: 480px) {
    .footer-logo-img {
        height: 28px;
    }
    
    .footer-logo-text {
        font-size: 18px;
    }
    
    .footer-menu-button {
        padding: 10px 0;
        font-size: 12px;
    }
    
    .footer-cookies-btn {
        font-size: 13px;
        justify-content: center;
    }
    
    .footer-social-title {
        font-size: 13px;
    }
    
    .footer-social-link {
        width: 36px;
        height: 36px;
    }
    
    .footer-info-button {
        font-size: 10px;
        padding: 8px 12px;
        min-height: 40px;
    }
}