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

:root {
    --primary-color: #2f4160;
    --secondary-color: #0bbf64;
    --light-blue: #c7d7f0;
    --light-gray: #e6e2e2;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --shadow: 0 4px 20px rgba(47, 65, 96, 0.1);
    --shadow-hover: 0 8px 30px rgba(47, 65, 96, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

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

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

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.highlight {
    color: var(--secondary-color);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary-color);
    opacity: 0.3;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.feature-item span {
    font-weight: 500;
    color: var(--primary-color);
}

.cta-button {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #09a555 100%);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow);
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.cta-button.secondary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e2a3a 100%);
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
}

.hero-img:hover {
    transform: scale(1.02);
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-blue);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.benefit-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.benefit-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), #09a555);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e2a3a 100%);
    color: var(--white);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-blue);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.contact-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    width: 50px;
    text-align: center;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

.footer-logo-text {
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-text {
    text-align: right;
}

.footer-text p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-hover);
    animation: modalSlideIn 0.3s ease;
}

.lgpd-modal {
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
}

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

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

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: var(--primary-color);
    margin: 0;
}

.close {
    color: var(--text-light);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 2rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(11, 191, 100, 0.1);
}

.lgpd-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light-blue);
    border-radius: var(--border-radius);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin: 0;
    line-height: 1.5;
}

.checkbox-group a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.btn-cancel,
.btn-submit,
.btn-accept,
.btn-decline,
.btn-ok {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cancel,
.btn-decline {
    background: var(--light-gray);
    color: var(--text-dark);
}

.btn-cancel:hover,
.btn-decline:hover {
    background: #d0d0d0;
}

.btn-submit,
.btn-accept,
.btn-ok {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-submit:hover,
.btn-accept:hover,
.btn-ok:hover {
    background: #09a555;
    transform: translateY(-2px);
}

/* LGPD Modal Content */
#lgpdContent {
    max-height: 400px;
    overflow-y: auto;
    padding: 1rem;
    background: var(--light-blue);
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

#lgpdContent h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

#lgpdContent p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.lgpd-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Loading Modal */
.loading-modal {
    text-align: center;
    max-width: 400px;
}

.loading-content {
    padding: 3rem 2rem;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light-gray);
    border-top: 4px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Success Modal */
.success-modal {
    text-align: center;
    max-width: 400px;
}

.success-content {
    padding: 3rem 2rem;
}

.success-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.success-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Error Modal */
.error-modal {
    text-align: center;
    max-width: 400px;
}

.error-content {
    padding: 3rem 2rem;
}

.error-icon {
    font-size: 4rem;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.error-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hero-content,
    .about-content,
    .cta-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-features {
        justify-content: center;
    }

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

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

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

    .form-actions {
        flex-direction: column;
    }

    .lgpd-actions {
        flex-direction: column;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        text-decoration: none;
    }

    .about-text h3 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
    ;
    text-align: center;
}

.pricing-section .section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-section .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pricing-image {
    flex: 1;
    max-width: 300px;
}

.pricing-image i {
    display: block;
    margin: 0 auto;
}

.pricing-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.pricing-details {
    flex: 1;
    max-width: 500px;
    text-align: left;
}

.pricing-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.pricing-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.5rem;
}

.pricing-text h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.pricing-text p {
    font-size: 1rem;
    color: var(--text-color);
    margin: 0;
}

.pricing-details .btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: background-color 0.3s ease;
}

.pricing-details .btn:hover {
    background-color: #4f668f;
}

@media (max-width: 768px) {
    .pricing-content {
        flex-direction: column;
        text-align: center;
    }

    .pricing-details {
        text-align: center;
    }

    .pricing-item {
        justify-content: center;
    }

    .pricing-image {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-section .section-title {
        font-size: 2rem;
    }

    .pricing-section .section-subtitle {
        font-size: 1rem;
    }

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

    .pricing-text p {
        font-size: 0.9rem;
    }
}


/* Estilos para o campo de senha com toggle */
.form-group .password-container {
    position: relative;
    display: flex;
    align-items: center;
}

.form-group .password-container input {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: var(--border-radius);
    box-sizing: border-box;
}

.form-group .password-toggle {
    position: absolute;
    right: 10px;
    cursor: pointer;
    color: var(--text-color);
    font-size: 1.2rem;
}

.form-group .password-toggle:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .form-group .password-toggle {
        right: 5px;
        font-size: 1rem;
    }
}


/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 3px solid var(--secondary-color);
    box-shadow: 0 -4px 20px rgba(47, 65, 96, 0.15);
    z-index: 1500;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    padding: 1.5rem 0;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.cookie-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.cookie-message h4 {
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.cookie-message p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.4;
}

.cookie-message a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.cookie-message a:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cookie-settings,
.btn-cookie-accept {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-cookie-settings {
    background: var(--light-gray);
    color: var(--text-dark);
    border: 2px solid var(--light-gray);
}

.btn-cookie-settings:hover {
    background: #d0d0d0;
    border-color: #d0d0d0;
}

.btn-cookie-accept {
    background: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
}

.btn-cookie-accept:hover {
    background: #09a555;
    border-color: #09a555;
    transform: translateY(-2px);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    max-width: 600px;
}

.cookie-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-blue);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cookie-category h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.2rem;
}

.cookie-category p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}



/* Cookie Toggle Switch */
.cookie-toggle {
    position: relative;
}

.cookie-toggle input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-label {
    display: inline-block;
    width: 50px;
    height: 24px;
    background: #ccc;
    border-radius: 24px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-label:hover {
    background: #bbb;
}

.toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input:checked+.toggle-label {
    background: var(--secondary-color);
}

.cookie-toggle input:checked+.toggle-label .toggle-slider {
    transform: translateX(26px);
}

.cookie-toggle input:disabled+.toggle-label {
    background: var(--secondary-color);
    opacity: 0.7;
    cursor: not-allowed;
}

.cookie-toggle input:disabled+.toggle-label:hover {
    background: var(--secondary-color);
}

.cookie-actions-modal {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
}

.btn-cookie-save,
.btn-cookie-accept-all {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-save {
    background: var(--primary-color);
    color: var(--white);
}

.btn-cookie-save:hover {
    background: #1e2a3a;
    transform: translateY(-2px);
}

.btn-cookie-accept-all {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-cookie-accept-all:hover {
    background: #09a555;
    transform: translateY(-2px);
}

/* Cookie Banner Responsive */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .cookie-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        text-align: left;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .btn-cookie-settings,
    .btn-cookie-accept {
        flex: 1;
        justify-content: center;
        padding: 1rem;
    }

    .cookie-actions-modal {
        flex-direction: column;
    }

    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 1rem 0;
    }

    .cookie-content {
        padding: 0 15px;
    }

    .cookie-message h4 {
        font-size: 1rem;
    }

    .cookie-message p {
        font-size: 0.9rem;
    }

    .btn-cookie-settings,
    .btn-cookie-accept {
        font-size: 0.9rem;
        padding: 0.875rem 1rem;
    }
}

/* Cookie Banner Animation */
@keyframes cookieSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

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

.cookie-banner.animate {
    animation: cookieSlideUp 0.5s ease-out;
}

/* Hide cookie banner when accepted */
.cookie-banner.hidden {
    display: none;
}

/* Ajustes específicos para o Modal de Habilitação */
#enableModal .modal-content {
    max-height: 80vh;
    /* Limita a altura máxima a 80% da viewport no desktop */
    overflow-y: auto;
    /* Adiciona scroll vertical quando o conteúdo excede a altura */
    width: 90%;
    /* Mantém a largura responsiva no desktop */
    max-width: 500px;
    /* Limita a largura máxima no desktop */
}

/* Estilos para dispositivos móveis */
@media (max-width: 768px) {
    #enableModal .modal-content {
        width: 100%;
        /* Ocupa toda a largura da tela */
        height: 100vh;
        /* Ocupa toda a altura da tela */
        margin: 0;
        /* Remove margens para ocupar toda a tela */
        border-radius: 0;
        /* Remove bordas arredondadas para um visual de tela cheia */
        max-height: none;
        /* Remove a limitação de altura para usar toda a tela */
        overflow-y: auto;
        /* Adiciona scroll vertical para o conteúdo */
    }

    #enableModal .modal-body {
        padding: 1.5rem;
        /* Mantém o padding confortável */
    }

    #enableModal .form-actions {
        flex-direction: column;
        /* Alinha os botões em coluna */
        gap: 0.75rem;
        /* Espaçamento entre botões */
        position: sticky;
        /* Mantém os botões visíveis ao rolar */
        bottom: 0;
        /* Cola os botões na parte inferior */
        background: var(--white);
        /* Fundo branco para os botões */
        padding: 1rem;
        /* Padding para os botões */
        border-top: 1px solid var(--light-gray);
        /* Linha separadora */
    }

    #enableModal .btn-cancel,
    #enableModal .btn-submit {
        width: 100%;
        /* Botões ocupam toda a largura */
        padding: 1rem;
        /* Aumenta o padding para facilitar o toque */
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
    #enableModal .modal-header h2 {
        font-size: 1.5rem;
        /* Reduz o tamanho do título */
    }

    #enableModal .modal-body {
        padding: 1rem;
        /* Reduz o padding em telas menores */
    }

    #enableModal .form-group input {
        font-size: 0.9rem;
        /* Ajusta o tamanho da fonte dos inputs */
    }
}