.video-container {
    width: 100%;
    max-width: 630px;
    margin: 30px auto 0;
    background: white;
    border-radius: 11px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.video-responsive {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

@media (max-width: 900px) {
    .video-container {
        max-width: 90%;
        margin: 20px auto 0;
        padding: 15px;
    }
}

@media (max-width: 900px) {
    .video-container {
        max-width: 90%;
        margin: 20px auto 0;
        padding: 15px;
    }
}

@media (max-width: 600px) {
    .video-container {
        margin: 15px auto 0;
        padding: 12px;
        border-radius: 8px;
        max-width: 98%;
    }
    
    .video-responsive {
        border-radius: 6px;
    }
    
    .video-responsive iframe {
        border-radius: 6px;
    }
    
    .section-subtitle {
        font-size: 24px !important;
        padding: 0 10px;
    }
}

.section-diff {
    display: flex;
    align-items: center;
}

.section-diff .section-text {
    order: 1;
    flex: 1;
}

.section-diff .section-image {
    order: 2;
    flex: 1;
}

@media (max-width: 900px) {
    .section-diff {
        flex-direction: column;
    }
    .section-diff .section-text {
        order: 1;
        width: 100%;
        margin-bottom: 18px;
    }
    .section-diff .section-image {
        order: 2;
        width: 100%;
    }
}
/* Responsive para sección de capturas */
.section-image {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .section-image {
        gap: 16px;
    }
    .section-image img {
        max-width: 90vw;
        height: auto;
    }
}

@media (max-width: 600px) {
    .section-image {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .section-image img {
        max-width: 98vw;
        width: 100%;
        height: auto;
    }
}
body.home {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-6 {
    width: 50%;
    padding: 0 15px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .col-md-6 {
        width: 100%;
        margin-bottom: 30px;
    }
}


.hero-content {
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    transform: translateY(-60%);
    text-align: center;
    z-index: 2;
}

.hero-title {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: white;
    margin-bottom: 30px;
    text-align: center;
}

.hero-subtitle {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: white;
    margin-bottom: 30px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-button {
    display: inline-block;
    background-color: #193F8A;
    color: white;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 400;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-button:hover {
    background-color: #1A4FB3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}


.hero-logo {
    margin: 30px 0;
}

.hero-logo a {
    transition: transform 0.3s ease, filter 0.3s ease;
    display: block;
}

.hero-logo a:hover {
    transform: translateY(-5px);
}


.main-content {
    display: flex;
    flex-direction: column;
}


.section {
    padding: 60px 40px
}

.section-blue {
    background-color: #1A3F8A;
    color: white;
}

.section-white {
    background-color: white;
    color: #052441;
}

.section-title {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
}

.section-subtitle {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 20px;
    color: rgb(255, 255, 255);
}

.section-subtitle h2 {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 20px;
}

.section-content {
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-size: 20px;
    max-width: 760px;
    margin: 0 auto;
}

/* Estilos para el formulario/widget */
.widget-container {
    background: white;
    border-radius: 11px;
    padding: 30px;
    max-width: 480px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.widget-header {
    text-align: center;
    margin-bottom: 20px;
}

.widget-title {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 23px;
    color: #15385C;
}

.widget-subtitle {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #15385C;
    margin-top: 10px;
}

.widget-info {
    background: rgba(26, 64, 138, 0.11);
    border-radius: 11px;
    padding: 20px;
    margin: 20px 0;
}

.widget-info-title {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #193F8A;
    margin-bottom: 15px;
}

.widget-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.widget-check span {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #193F8A;
    margin-left: 10px;
}

.widget-button {
    display: block;
    width: 100%;
    background: #193F8A;
    color: white;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 400;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.widget-button:hover {
    background-color: #1A4FB3;
    transform: scale(1.02);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.widget-footer {
    text-align: center;
    margin-top: 20px;
    font-family: Inter, sans-serif;
    font-weight: 300;
    font-size: 12px;
    color: #828282;
}

/* Footer */
.footer {
    background: #1A3F8A;
    color: white;
    padding: 60px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-description {
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-size: 18px;
    max-width: 500px;
    margin-bottom: 30px;
}

.footer-contact {
    margin-top: 30px;
}

.footer-contact-title {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.footer-social a {
    transition: transform 0.3s ease, filter 0.3s ease;
    display: block;
}

.footer-social a:hover {
    transform: translateY(-5px);
    filter: brightness(1.2);
}

.footer-newsletter {
    max-width: 500px;
}

.footer-newsletter-title {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 46px;
    line-height: 69px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.footer-newsletter-subtitle {
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-form {
    display: flex;
    position: relative;
}

.footer-input {
    width: 375px;
    height: 56px;
    background: #2B2E3C;
    border-radius: 8px;
    border: none;
    padding: 0 20px;
    font-family: Montserrat, sans-serif;
}

.footer-button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #4599C9;
    color: white;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
    height: 56px;
}

.footer-button:hover {
    background-color: #56AAD9;
}

.footer-partners {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    justify-content: flex-end;
}

.footer-partners-title {
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: white;
}

.footer-partners a {
    transition: transform 0.3s ease, filter 0.3s ease;
    display: block;
}

.footer-partners a:hover {
    transform: translateY(-5px);
}

.footer-copyright {
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: white;
    margin-top: 40px;
    text-align: left;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}


@media (max-width: 1200px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-newsletter {
        margin-top: 40px;
    }
}

@media (max-width: 900px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .section-subtitle {
        font-size: 28px;
    }
    
    .widget-container {
        max-width: 90%;
    }
    
    .footer-input {
        width: 100%;
    }
    
    .footer-form {
        flex-direction: column;
    }
    
    .footer-button {
        position: static;
        transform: none;
        margin-top: 10px;
        width: 100%;
        border-radius: 8px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section {
        padding: 40px 15px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .section-content {
        font-size: 16px;
    }
    
    .footer {
        padding: 40px 15px;
    }
    
    .footer-newsletter-title {
        font-size: 32px;
        line-height: normal;
    }
}
