/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header */
.header {
    background-color: #fff;
    border-bottom: 3px solid #1a1a1a;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    padding: 8px 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.header-top {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo img {
    height: 40px;
    transition: height 0.3s ease;
}

.header.scrolled .header-logo img {
    height: 32px;
}

/* Espaçamento para compensar header fixo */
body {
    padding-top: 70px;
}

/* Hero Section com Imagem de Fundo */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('../images/01.png');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start;
}

.hero-text h1 {
    font-size: 2.5rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.1;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.hero-text h2 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    opacity: 0.95;
}

.discount-badge {
    background-color: #1a1a1a;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 20px;
}

.discount-text {
    font-weight: bold;
    font-size: 1.1rem;
}

/* Form Styles Simples */
.form-container {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #1a1a1a;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 30px;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1a1a1a 0%, #333 100%);
    border-radius: 4px;
    transition: width 0.4s ease;
    width: 0%;
    /* Começa zerada */
}

.progress-text {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Radio Group Styles */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.radio-option:hover {
    border-color: #1a1a1a;
    background: #f0f0f0;
}

.radio-option input[type="radio"] {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    accent-color: #1a1a1a;
}

.radio-option input[type="radio"]:checked+span {
    font-weight: bold;
    color: #1a1a1a;
}

.radio-option input[type="radio"]:checked {
    transform: scale(1.1);
}

.radio-option span {
    font-size: 16px;
    color: #333;
}

/* Form Step Headers */
.form-step h4 {
    color: #1a1a1a;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.form-container h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.discount-highlight {
    background: #1a1a1a;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

.percentage {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
}

.validity {
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a1a1a;
}

/* Input de telefone no callback (mantém estilo especial) */
input[name="callback_phone"] {
    background-color: #f9f9f9;
    border: 2px solid #e0e0e0;
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    display: block;
}

input[name="callback_phone"]:focus {
    background-color: #fff;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
}

/* Container do telefone */
.phone-section {
    text-align: center;
    margin: 20px 0;
}

.phone-section p {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

/* Melhorar texto explicativo do telefone */
.phone-instructions {
    font-size: 12px;
    color: #666;
    margin-top: 8px;
    text-align: center;
    line-height: 1.4;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.phone-instructions strong {
    color: #1a1a1a;
}

.btn-primary {
    background-color: #1a1a1a;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: #404040;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #fff;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    max-width: 280px;
    margin: 10px auto;
    display: block;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background-color: #555555;
    color: white;
}

.callback-option {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.callback-option p {
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
}

.phone-note {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    margin-top: 10px;
}

.form-disclaimer {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    margin-top: 10px;
}

/* Technology Section */
.technology {
    padding: 60px 0;
    background-color: white;
    text-align: center;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.technology h2 {
    color: #1a1a1a;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.tech-description {
    max-width: 1000px;
    margin: 0 auto 0px auto;
    text-align: center;
}

.tech-description p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

/* DSE-830i Section */
.dse-830i {
    padding: 60px 0;
    background-color: white;
    border-bottom: 1px solid #ddd;
}

.dse-830i-content {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 40px;
    align-items: center;
}

.dse-830i-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.dse-830i-text p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #555;
    text-align: center;
}

.dse-830i-text .disclaimer {
    font-style: italic;
    color: #777;
}

.dse-830i-image img {
    max-width: 500px;
    width: auto;
    height: auto;
    border-radius: 10px;
}

/* Individual Product Sections */
.active-8w,
.cr-4t,
.lz-520,
.irpet-520,
.ird-650,
.active-full-32,
.sl-320,
.tec-510,
.swat-app,

.product-arlo-features {
    padding: 60px 0;
    border-bottom: 1px solid #ddd;
    background-color: white;
}

.product-support {
    padding: 60px 0;
    border-bottom: 1px solid #ddd;
    background-image: url('../images/footer-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.product-support::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.product-support .container {
    position: relative;
    z-index: 2;
}

.product-item {
    margin-bottom: 60px;
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: center;
}

.product-item.reverse .product-content {
    grid-template-columns: 400px 1fr;
}

.product-text h3 {
    color: #1a1a1a;
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-align: center;
}

.product-text h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    margin-top: 20px;
    text-align: center;
}

.product-text p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #555;
    text-align: center;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Padronizar tamanho das imagens dos produtos - Desktop */
.active-8w .product-image img,
.lz-520 .product-image img,
.ird-650 .product-image img,
.sl-320 .product-image img,
.cr-4t .product-image img,
.irpet-520 .product-image img,
.active-full-32 .product-image img,
.tec-510 .product-image img,
.swat-app .product-image img,
.product-support .product-image img {
    max-width: 500px;
    width: auto;
    height: auto;
}

/* Layout normal - texto à esquerda, imagem à direita */
.active-8w .product-content,
.lz-520 .product-content,
.ird-650 .product-content,
.sl-320 .product-content,
.swat-app .product-content,
.product-support .product-content {
    grid-template-columns: 1fr 500px;
}

/* Layout reverso - imagem à esquerda, texto à direita */
.cr-4t .product-content,
.irpet-520 .product-content,
.active-full-32 .product-content,
.tec-510 .product-content {
    grid-template-columns: 500px 1fr;
}

/* Styling para listas com check marks */
.product-text ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
    text-align: center;
}

.product-text ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #555;
}

.camera-features ul {
    list-style: none;
    padding-left: 0;
}

.camera-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.camera-features li:before {
    content: "✓ ";
    color: #1a1a1a;
    font-weight: bold;
    margin-right: 8px;
}

.app-downloads {
    margin-top: 20px;
    text-align: center;
}

.download-buttons img {
    height: 50px;
    cursor: pointer;
    transition: transform 0.3s;
}

.download-buttons img:hover {
    transform: scale(1.05);
}

/* CTA Sections */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a, #333333);
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.cta-content p {
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-section .btn-primary {
    background-color: white;
    color: #1a1a1a;
    width: auto;
    min-width: 250px;
}

.cta-section .btn-primary:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
}

.testimonials h2 {
    color: #1a1a1a;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}



.testimonial-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-content cite {
    color: #1a1a1a;
    font-size: 0.9rem;
}

/* Support Section */
.support {
    padding: 60px 0;
    background-color: white;
    border-bottom: 1px solid #ddd;
}

.support-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: center;
}

.support-text h2 {
    color: #1a1a1a;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.support-text h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.support-text p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.support-text ul {
    list-style: none;
    padding-left: 0;
}

.support-text li {
    padding: 10px 0;
    color: #555;
    border-bottom: 1px solid #eee;
}

.support-text li:before {
    content: "• ";
    color: #1a1a1a;
    font-weight: bold;
    margin-right: 8px;
}

.support-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 40px 0 20px;
    border-top: 1px solid #ddd;
}

.footer-disclaimer {
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 0.5rem;
    color: #ccc;
    line-height: 1.6;
}

.footer-disclaimer a {
    color: #666666;
    text-decoration: none;
}

.footer-disclaimer a:hover {
    text-decoration: underline;
}

.footer-links {
    text-align: center;
    margin-bottom: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin: 0 5px;
}

.footer-links a:hover {
    color: white;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
}

.footer-copyright p {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 5px;
}

.footer-copyright p:last-child {
    font-size: 0.8rem;
    color: #999;
}

/* Responsive Design */
@media (max-width: 1024px) {

    /* Todas as imagens dos produtos - Tablet */
    .active-8w .product-image img,
    .lz-520 .product-image img,
    .ird-650 .product-image img,
    .sl-320 .product-image img,
    .cr-4t .product-image img,
    .irpet-520 .product-image img,
    .active-full-32 .product-image img,
    .tec-510 .product-image img,
    .swat-app .product-image img,
    .product-support .product-image img,
    .dse-830i-image img {
        max-width: 400px;
    }

    .header-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .header-info {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-text {
        text-align: center;
    }

    .tech-content,
    .dse-830i-content,
    .product-content,
    .support-content {
        display: flex;
        flex-direction: column;
    }

    .product-item.reverse .product-content {
        display: flex;
        flex-direction: column;
    }

    /* Garantir que imagens sempre fiquem acima do texto no responsivo */
    .product-image,
    .dse-830i-image {
        order: 1;
    }

    .product-text,
    .dse-830i-text {
        order: 2;
    }

    .dse-830i-image img,
    .product-image img,
    .support-image img {
        max-width: 400px;
        height: auto;
        margin: 20px auto;
        display: block;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {

    /* Todas as imagens dos produtos - Mobile */
    .active-8w .product-image img,
    .lz-520 .product-image img,
    .ird-650 .product-image img,
    .sl-320 .product-image img,
    .cr-4t .product-image img,
    .irpet-520 .product-image img,
    .active-full-32 .product-image img,
    .tec-510 .product-image img,
    .swat-app .product-image img,
    .product-support .product-image img,
    .dse-830i-image img {
        max-width: 400px;
    }

    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Regra para imagens do header e outras não-produto */
    .header img,
    .hero img,
    .download-buttons img {
        max-width: 100%;
        height: auto;
    }

    .hero,
    .technology,
    .dse-830i,
    .active-8w,
    .cr-4t,
    .lz-520,
    .irpet-520,
    .ird-650,
    .active-full-32,
    .sl-320,
    .tec-510,
    .swat-app,
    .product-arlo-features,
    .testimonials,
    .footer {
        max-width: 100%;
        overflow-x: hidden;
    }

    .header-top {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 10px 0;
    }

    .header-logo img {
        max-height: 35px;
    }

    .hero {
        padding: 20px 0;
    }

    .hero-text h1 {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .hero-text h2 {
        font-size: 1.3rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .form-container {
        padding: 20px;
        margin-top: 30px;
    }

    .form-container h3 {
        font-size: 1.3rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial {
        flex-direction: column;
        text-align: center;
    }

    .download-buttons {
        justify-content: center;
    }

    .product-item {
        margin-bottom: 40px;
    }

    .cta-section {
        padding: 30px 15px;
    }

    .cta-content {
        text-align: center;
    }

    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .cta-section .btn-primary {
        min-width: 200px;
        padding: 12px 20px;
    }

    .technology,
    .dse-830i,
    .testimonials {
        padding: 40px 0;
    }

    .technology h2,
    .testimonials h2 {
        font-size: 1.8rem;
    }

    .product-text h3 {
        font-size: 1.4rem;
    }

    .tech-image img,
    .dse-830i-image img,
    .product-image img,
    .support-image img {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
        max-width: 100%;
        overflow-x: hidden;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-text h2 {
        font-size: 1.3rem;
    }

    .form-container {
        padding: 15px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .technology h2,
    .testimonials h2 {
        font-size: 1.8rem;
    }

    .tech-description {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .tech-description p {
        font-size: 0.95rem;
    }

    .tech-image {
        max-width: 100%;
    }

    .product-text h3 {
        font-size: 1.3rem;
    }

    .product-text p {
        font-size: 0.95rem;
    }

    .active-8w,
    .cr-4t,
    .lz-520,
    .irpet-520,
    .ird-650,
    .active-full-32,
    .sl-320,
    .tec-510,
    .swat-app,
    .product-arlo-features {
        padding: 30px 0;
    }

    input[name="callback_phone"] {
        max-width: 100%;
        font-size: 14px;
    }

    .phone-note {
        font-size: 0.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .footer {
        padding: 30px 0 15px;
    }

    .footer-disclaimer p {
        font-size: 0.45rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .footer-links {
        margin-bottom: 15px;
    }

    .footer-links a {
        font-size: 0.9rem;
        margin: 0 3px;
    }

    .footer-copyright p {
        font-size: 0.8rem;
    }
}

/* Extra small devices (mobile phones in portrait mode) */
@media (max-width: 360px) {
    .container {
        padding: 0 8px;
        max-width: 100%;
        overflow-x: hidden;
    }

    .hero-text h1 {
        font-size: 1.3rem;
    }

    .hero-text h2 {
        font-size: 1.1rem;
    }

    .form-container {
        padding: 12px;
        border-radius: 8px;
    }

    .form-container h3 {
        font-size: 1.1rem;
    }

    .form-group input,
    .form-group select {
        padding: 10px;
        font-size: 14px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .product-text h3 {
        font-size: 1.2rem;
    }

    .technology h2,
    .testimonials h2 {
        font-size: 1.4rem;
    }

    .footer {
        padding: 25px 0 10px;
    }

    .footer-disclaimer p {
        font-size: 0.4rem;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    .footer-copyright p {
        font-size: 0.75rem;
    }

    .cta-section .btn-primary {
        min-width: 180px;
        font-size: 0.85rem;
    }
}

/* Animation and Transitions */
.hero-content,
.product-item,
.testimonial {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Step Transitions */
.form-step {
    transition: all 0.5s ease-in-out;
}

/* Loading State */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #1a1a1a;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Scroll to top button modernizado */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #1a1a1a;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.visible {
    opacity: 1;
}

.scroll-top:hover {
    background-color: #404040;
    transform: translateY(-3px);
}

.scroll-top::before {
    content: '↑';
}

/* Logo alternative for SVG not found */
.logo-fallback {
    background-color: #1a1a1a;
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
}

/* Success/Error Messages */
.message {
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
    text-align: center;
}

.message.success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.message.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Form validation styles */
.form-group.error input,
.form-group.error select {
    border-color: #1a1a1a;
}

.error-message {
    color: #1a1a1a;
    font-size: 0.8rem;
    margin-top: 5px;
}

/* Print styles */
@media print {

    .header,
    .form-container,
    .cta-section,
    .footer {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    h1,
    h2,
    h3 {
        page-break-after: avoid;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    animation: fadeIn 0.3s ease-out;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    margin: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    animation: slideIn 0.3s ease-out;
}

.modal-header {
    background: linear-gradient(135deg, #1a1a1a, #333333);
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px 15px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.close:hover,
.close:focus {
    color: #ccc;
}

.modal-body {
    padding: 0;
    max-height: calc(90vh - 80px);
    overflow-y: auto;
}

.policy-content {
    padding: 30px;
    line-height: 1.6;
}

.policy-content h3 {
    color: #1a1a1a;
    font-size: 1.3rem;
    margin: 25px 0 15px 0;
    font-weight: 600;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
}

.policy-content h4 {
    color: #333;
    font-size: 1.1rem;
    margin: 20px 0 10px 0;
    font-weight: 600;
}

.policy-content p {
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

.policy-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.policy-content li {
    color: #555;
    margin-bottom: 8px;
    line-height: 1.5;
}

.policy-content strong {
    color: #1a1a1a;
    font-weight: 600;
}

.last-updated {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 30px;
    font-style: italic;
    color: #666;
    text-align: center;
    border-left: 4px solid #1a1a1a;
}

/* Modal Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 10px;
        max-height: 95vh;
        border-radius: 10px;
    }

    .modal-header {
        padding: 15px 20px;
        border-radius: 10px 10px 0 0;
    }

    .modal-header h2 {
        font-size: 1.3rem;
    }

    .policy-content {
        padding: 20px;
    }

    .policy-content h3 {
        font-size: 1.2rem;
        margin: 20px 0 12px 0;
    }

    .policy-content h4 {
        font-size: 1rem;
        margin: 15px 0 8px 0;
    }

    .policy-content p,
    .policy-content li {
        font-size: 0.95rem;
    }

    .modal-body {
        max-height: calc(95vh - 70px);
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 5px;
        max-height: 98vh;
        border-radius: 8px;
    }

    .modal-header {
        padding: 12px 15px;
        border-radius: 8px 8px 0 0;
    }

    .modal-header h2 {
        font-size: 1.1rem;
    }

    .close {
        font-size: 24px;
    }

    .policy-content {
        padding: 15px;
    }

    .policy-content h3 {
        font-size: 1.1rem;
        margin: 15px 0 10px 0;
    }

    .policy-content h4 {
        font-size: 0.95rem;
        margin: 12px 0 6px 0;
    }

    .policy-content p,
    .policy-content li {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .policy-content ul {
        padding-left: 15px;
    }

    .last-updated {
        padding: 12px;
        font-size: 0.85rem;
    }

    .modal-body {
        max-height: calc(98vh - 60px);
    }
}

/* Scroll customizado para o modal */
.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #1a1a1a;
    border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #333;
}