/* Reset CSS */

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.icon-circle {
    width: 80px;            /* tamanho do círculo */
    height: 80px;
    background-color: #eea508; /* cor do círculo, pode ajustar */
    border-radius: 50%;      /* deixa redondo */
    display: flex;
    align-items: center;      /* centraliza verticalmente */
    justify-content: center;  /* centraliza horizontalmente */
    margin: 0 auto 20px;      /* centraliza e adiciona espaço abaixo */
    font-size: 2rem;          /* tamanho do ícone */
    color: #eea508;           /* cor do ícone, ajustar conforme paleta */
}
/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid #FFCC00;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.header .logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.header .logo h1 {
    font-size: 24px;
    font-weight: bold;
    color: #003399;
}

.header .logo p {
    font-size: 14px;
    color: #FFCC00;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    text-align: center;
}

.hero-section .sparkles-icon {
    width: 60px;
    height: 60px;
    background-color: #003399;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.hero-section h2 {
    font-size: 48px;
    font-weight: bold;
    color: #003366;
    margin-bottom: 10px;
}

.hero-section p {
    font-size: 18px;
    color: #444;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-section p span {
    color: #FFCC00;
    font-weight: bold;
}

.hero-copy {
    max-width: 640px;
    margin: 0 auto 32px;
}

.hero-copy .hero-line {
    max-width: none;
    margin: 0 auto 10px;
    font-size: 18px;
    color: #444;
    line-height: 1.5;
}

.hero-copy .hero-line--lead {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #003366;
}

.hero-flag-br-wrap {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    border-radius: 3px;
    line-height: 0;
}

.hero-flag-br {
    display: block;
    border-radius: 2px;
}

.hero-copy .hero-line--cta {
    margin-top: 18px;
    margin-bottom: 0;
}

.hero-copy .hero-line--cta span {
    color: #FFCC00;
    font-weight: bold;
    font-size: 19px;
}

/* Steps Section */
.steps-section {
    background: linear-gradient(135deg, #003399, #0055A4);
    color: #fff;
    padding: 80px 0;
}

.steps-section h3 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
}

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

.step-item {
    text-align: center;
}

.step-item .icon-circle {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.step-item h4 {
    font-size: 24px;
    font-weight: bold;
    color: #FFCC00;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 16px;
    color: #e0e0e0;
}

/* Maximize Section */
.maximize-section {
    background-color: #fff;
    padding: 80px 0;
}

.maximize-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: center;
}

.maximize-content h3 {
    font-size: 36px;
    font-weight: bold;
    color: #003366;
    margin-bottom: 20px;
}

.maximize-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.send-icon-container {
    width: 250px;
    height: 250px;
    background: transparent;
    border-radius: 50%;
    margin: 0 auto;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
    padding: 80px 0;
}

.testimonials-section h3 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    color: #003366;
    margin-bottom: 60px;
}

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

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

.testimonial-card .avatar-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #003399, #0055A4);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.testimonial-card p {
    font-size: 16px;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card .author {
    font-weight: bold;
    color: #003366;
    margin-bottom: 10px;
}

.testimonial-card .stars {
    color: #FFCC00;
    font-size: 20px;
}

/* Corporate Solutions Section */
.corporate-solutions-section {
    background: linear-gradient(135deg, #003399, #0055A4);
    color: #fff;
    padding: 80px 0;
}

.corporate-solutions-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: center;
}

.corporate-solutions-content h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.corporate-solutions-content p {
    font-size: 16px;
    color: #c5cae9;
    margin-bottom: 20px;
}

.corporate-solutions-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.corporate-solutions-content ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #c5cae9;
}

.corporate-solutions-content ul li::before {
    content: '✔';
    color: #FFCC00;
    margin-right: 10px;
}

.corporate-solutions-content button {
    background-color: #FFCC00;
    color: #003399;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.corporate-solutions-content button:hover {
    background-color: #FFD54F;
}

.users-icon-container {
    width: 250px;
    height: 250px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Footer */
.footer {
    background-color: #003366;
    color: #fff;
    padding: 50px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

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

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

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

.footer p,
.footer ul li {
    color: #ccc;
}

.footer h4 {
    font-size: 18px;
    font-weight: bold;
    color: #FFCC00;
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer .copyright {
    border-top: 1px solid #555;
    margin-top: 40px;
    padding-top: 30px;
    text-align: center;
    color: #bbb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
    }

    .header .logo {
        margin-bottom: 15px;
    }

    .hero-section h2 {
        font-size: 36px;
    }

    .steps-section h3,
    .maximize-content h3,
    .testimonials-section h3,
    .corporate-solutions-content h3 {
        font-size: 28px;
    }

    .maximize-content,
    .corporate-solutions-content {
        grid-template-columns: 1fr;
    }

    .send-icon-container,
    .users-icon-container {
        margin-top: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer ul {
        padding-left: 0;
    }

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

/* ===== WhatsApp Float Button Moderno ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: whatsapp-float 3s ease-in-out infinite;
}

.whatsapp-container {
    position: relative;
    display: inline-block;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.whatsapp-btn:hover::before {
    left: 100%;
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.whatsapp-icon {
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-icon svg {
    width: 20px;
    height: 20px;
    fill: #25D366;
}

.whatsapp-text {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Notification dot */
.notification-dot {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #ff4757;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: white;
    animation: pulse-dot 2s infinite;
    border: 3px solid white;
}

/* Tooltip */
.tooltip {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 20px;
    border: 6px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.8);
}

.whatsapp-container:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Animações */
@keyframes whatsapp-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-dot {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Responsivo */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-btn {
        border-radius: 50%;
        width: 60px;
        height: 60px;
        padding: 0;
        justify-content: center;
    }
    
    .whatsapp-icon {
        width: 32px;
        height: 32px;
    }
    
    .whatsapp-icon svg {
        width: 24px;
        height: 24px;
    }

    .tooltip {
        right: -10px;
        font-size: 12px;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
    }
}

/* ===== Header sombra ===== */
.header.shadow {
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.15);
}

/* ===== Quem somos ===== */
.about-section {
    background: #fff;
    padding: 70px 0;
    border-top: 1px solid #e0e0e0;
}

.about-section h3 {
    font-size: 32px;
    color: #003366;
    margin-bottom: 16px;
    text-align: center;
}

.about-section .about-lead {
    max-width: 800px;
    margin: 0 auto 28px;
    font-size: 17px;
    color: #444;
    text-align: center;
    line-height: 1.65;
    padding: 16px 20px;
    background: #f0f7ff;
    border-radius: 8px;
    border-left: 4px solid #003399;
}

.about-section .about-body {
    max-width: 720px;
    margin: 0 auto;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.about-section .about-body strong {
    color: #003366;
}

/* ===== Footer links / botões ===== */
.footer-link-btn {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: #ccc;
    font: inherit;
    padding: 0;
    margin-bottom: 10px;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-link-btn:hover {
    color: #FFCC00;
}

.footer a {
    color: #ccc;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer a:hover {
    color: #FFCC00;
}

.footer .footer-company {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 12px;
    color: #bbb;
}

.footer .wa-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 8px 14px;
    background: #25D366;
    color: #fff !important;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.footer .wa-inline:hover {
    background: #128C7E;
    color: #fff !important;
}

.footer-contact-lead {
    color: #b0bec5;
    font-size: 13px;
    margin: 0 0 10px;
}

.footer-contact-meta {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #ccc;
}

.footer-contact-meta li {
    margin-bottom: 6px;
}

.footer-contact-meta a {
    color: #FFCC00;
}

.footer-social {
    margin-top: 16px;
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff !important;
    text-decoration: none !important;
    font-size: 18px;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.footer-social a:hover {
    background: #FFCC00;
    color: #003366 !important;
    transform: translateY(-2px);
}

/* ===== Modais ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay[hidden] {
    display: none !important;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 17, 51, 0.55);
    cursor: pointer;
}

.modal-panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 640px;
    max-height: 88vh;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modal-panel--wide {
    max-width: 720px;
}

.modal-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 2px solid #FFCC00;
    background: #003366;
    color: #fff;
}

.modal-panel-header h2 {
    font-size: 1.15rem;
    font-weight: bold;
    margin: 0;
    line-height: 1.35;
}

.modal-close {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.28);
}

.modal-body {
    padding: 20px 22px 24px;
    overflow-y: auto;
    color: #333;
    font-size: 15px;
    line-height: 1.65;
}

.modal-body h3 {
    font-size: 1rem;
    color: #003366;
    margin: 20px 0 10px;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body ul {
    margin: 8px 0 12px 18px;
}

.modal-body p {
    margin-bottom: 12px;
}

.modal-body a {
    color: #0055A4;
    word-break: break-word;
}

/* Modal de contato (layout) */
.contact-modal-body {
    padding-bottom: 20px;
}

.contact-modal-subtitle {
    text-align: center;
    font-size: 15px;
    color: #003366;
    margin: 0 0 20px;
    font-weight: 600;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 520px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

.contact-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 14px;
    background: #f5f8fc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}

.contact-card--full {
    grid-column: 1 / -1;
}

.contact-card-icon {
    font-size: 1.35rem;
    line-height: 1;
    flex-shrink: 0;
}

.contact-card-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
    margin: 0 0 6px;
    font-weight: 700;
}

.contact-card-text {
    margin: 0;
    font-size: 15px;
    color: #1e293b;
    line-height: 1.45;
}

.contact-card-text a {
    font-weight: 600;
}

.contact-card-sep {
    margin: 0 6px;
    color: #94a3b8;
}

.contact-modal-actions {
    display: flex;
    justify-content: center;
    margin: 22px 0 8px;
}

.wa-inline--lg {
    padding: 12px 28px;
    font-size: 16px;
    border-radius: 10px;
}

.contact-social-section {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.contact-social-heading {
    font-size: 0.95rem;
    color: #003366;
    margin: 0 0 14px;
    text-align: center;
}

.contact-social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.contact-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none !important;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.contact-social-btn--ig {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff !important;
}

.contact-social-btn--fb {
    background: #1877f2;
    color: #fff !important;
}

.contact-modal-footnote {
    text-align: center;
    font-size: 13px;
    color: #64748b;
    margin: 20px 0 0;
}

.modal-actions {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.btn-primary-modal {
    background: #FFCC00;
    color: #003399;
    border: none;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary-modal:hover {
    background: #FFD54F;
}

.link-termos-fim {
    display: inline-block;
    margin-top: 16px;
    font-weight: bold;
    color: #003399;
    cursor: pointer;
    text-decoration: underline;
    background: none;
    border: none;
    font: inherit;
    padding: 0;
}

.link-termos-fim:hover {
    color: #0055A4;
}

/* FAQ accordion style in modal */
.faq-item-modal {
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eee;
}

.faq-item-modal:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item-modal strong {
    display: block;
    color: #003366;
    margin-bottom: 6px;
}

/* ===== Reveal on scroll ===== */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.show {
    opacity: 1;
    transform: none;
}

/* ===== Depoimento ativo ===== */
.testimonial-card.active {
    box-shadow: 0 8px 28px rgba(0, 51, 153, 0.2);
    border-color: #003399;
    transform: scale(1.02);
    transition: box-shadow 0.4s, transform 0.4s, border-color 0.4s;
}

/* ===== Voltar ao topo ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 900;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #003399;
    color: #FFCC00;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.2s;
    box-shadow: 0 4px 14px rgba(0, 51, 153, 0.35);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .back-to-top {
        right: 20px;
        bottom: 90px;
    }
}

/* ===== Ripple ===== */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    transform: scale(0);
    animation: ripple-anim 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-anim {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* ===== Banner de cookies (LGPD) ===== */
body.has-cookie-banner {
    padding-bottom: 120px;
}

body.has-cookie-banner .whatsapp-float {
    bottom: 108px;
}

body.has-cookie-banner .back-to-top {
    bottom: 168px;
}

@media (min-width: 769px) {
    body.has-cookie-banner {
        padding-bottom: 100px;
    }

    body.has-cookie-banner .whatsapp-float {
        bottom: 96px;
    }

    body.has-cookie-banner .back-to-top {
        bottom: 150px;
    }
}

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9990;
    background: linear-gradient(180deg, #002855 0%, #003366 100%);
    color: #e8eef5;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.25);
    border-top: 3px solid #FFCC00;
    transform: translateY(100%);
    visibility: hidden;
    transition: transform 0.35s ease, visibility 0.35s ease;
}

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

.cookie-banner-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-banner-text {
    flex: 1 1 280px;
    min-width: 0;
}

.cookie-banner-heading {
    font-size: 1rem;
    font-weight: bold;
    color: #FFCC00;
    margin: 0 0 8px;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #dce4ee;
}

.cookie-banner-inline-link {
    display: inline;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    color: #FFCC00;
    font: inherit;
    text-decoration: underline;
    cursor: pointer;
    text-underline-offset: 2px;
}

.cookie-banner-inline-link:hover {
    color: #ffe082;
}

.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.cookie-btn--primary {
    background: #FFCC00;
    color: #003366;
    border-color: #FFCC00;
}

.cookie-btn--primary:hover {
    background: #FFD54F;
}

.cookie-btn--secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
}

.cookie-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        align-items: stretch;
    }

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

    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}

