:root {
    /* Paleta de Cores - Baseada no Logo */
    --gold-primary: #C9A961;
    --gold-light: #D4B574;
    --gold-dark: #B39650;

    /* Tema Azul (Padrão) */
    --primary-color: #1B3A5F;
    --primary-light: #2A4D7C;
    --primary-lighter: #3A5F8F;
    --primary-dark: #0F2847;

    --gray-dark: #4A4A4A;
    --gray-medium: #6B6B6B;
    --gray-light: #9B9B9B;
    --gray-lighter: #D4D4D4;
    --off-white: #F5F5F3;
    --white: #FFFFFF;

    /* Tipografia */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;

    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Tema Escuro (Charcoal) */
[data-theme="dark"] {
    --primary-color: #1A1A1A;
    --primary-light: #2D2D2D;
    --primary-lighter: #3A3A3A;
    --primary-dark: #0D0D0D;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--primary-dark);
    line-height: 1.6;
    background-color: var(--off-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition-medium);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold-primary);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 300;
    color: var(--gray-lighter);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -2px;
}

.logo-oab {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 400;
    color: var(--gray-light);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--off-white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--gold-primary);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--gold-primary);
    transition: var(--transition-fast);
}

/* Theme Toggle Button */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    margin-left: var(--spacing-md);
}

.theme-toggle:hover {
    background: var(--gold-primary);
    transform: rotate(180deg);
}

.theme-icon {
    position: absolute;
    color: var(--gold-primary);
    transition: all var(--transition-medium);
}

.theme-toggle:hover .theme-icon {
    color: var(--primary-dark);
}

.sun-icon {
    opacity: 1;
    transform: scale(1);
}

.moon-icon {
    opacity: 0;
    transform: scale(0);
}

[data-theme="dark"] .sun-icon {
    opacity: 0;
    transform: scale(0);
}

[data-theme="dark"] .moon-icon {
    opacity: 1;
    transform: scale(1);
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-lighter) 100%);
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 82px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(201, 169, 97, 0.03) 2px,
            rgba(201, 169, 97, 0.03) 4px);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: var(--spacing-xl) var(--spacing-md);
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.5px;
}

.hero-description {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--gray-lighter);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 0;
    border: 2px solid var(--gold-primary);
    transition: all var(--transition-medium);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--gold-primary);
    color: var(--primary-dark);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-dark);
    transition: var(--transition-medium);
    z-index: -1;
}

.btn-primary:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

.btn-primary:hover::before {
    left: 0;
}

.btn-full {
    width: 100%;
}

/* Sections */
.section {
    padding: var(--spacing-xxl) 0;
}

.section-about {
    background-color: var(--white);
}

.section-areas {
    background-color: var(--off-white);
}

.section-team {
    background-color: var(--white);
}

.section-contact {
    background-color: var(--off-white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.5px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    margin: 0 auto;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

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

.about-text p {
    margin-bottom: var(--spacing-md);
    color: var(--gray-dark);
    font-size: 1.05rem;
    line-height: 1.8;
}

.lead {
    font-size: 1.25rem !important;
    font-weight: 400;
    color: var(--primary-dark) !important;
    line-height: 1.7 !important;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.value-card {
    background: var(--off-white);
    padding: var(--spacing-lg);
    text-align: center;
    border-left: 3px solid var(--gold-primary);
    transition: var(--transition-medium);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-xs);
}

.value-card p {
    color: var(--gray-dark);
    font-size: 0.95rem;
}

/* Areas de Atuação */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.area-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-top: 3px solid var(--gold-primary);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.05), transparent);
    transition: var(--transition-slow);
}

.area-card:hover::before {
    left: 100%;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.area-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold-light);
    margin-bottom: var(--spacing-sm);
    opacity: 0.5;
}

.area-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-sm);
}

.area-description {
    color: var(--gray-dark);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.team-member {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--off-white);
    transition: var(--transition-medium);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.member-initials {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
}

.member-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-xs);
}

.member-role {
    font-size: 1rem;
    color: var(--gray-medium);
    margin-bottom: var(--spacing-xs);
}

.member-oab {
    font-size: 0.9rem;
    color: var(--gray-light);
    font-weight: 500;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.info-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.info-icon {
    font-size: 2rem;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.info-text h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-xs);
}

.info-text p {
    color: var(--gray-dark);
    font-size: 0.95rem;
    line-height: 1.7;
}

.info-text a {
    color: var(--gold-dark);
    text-decoration: none;
    transition: var(--transition-fast);
}

.info-text a:hover {
    color: var(--gold-primary);
}

/* Contact Form */
.contact-form-container {
    background: var(--white);
    padding: var(--spacing-lg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.8rem;
    border: 2px solid var(--gray-lighter);
    background-color: var(--off-white);
    color: var(--primary-dark);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    background-color: var(--white);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--gray-lighter);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--primary-lighter);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gold-primary);
    margin-bottom: var(--spacing-md);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: var(--spacing-xs);
    font-size: 0.9rem;
}

.footer-col a {
    color: var(--gray-lighter);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: var(--gold-primary);
}

.footer-about p {
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-oab {
    color: var(--gold-light) !important;
    font-weight: 600 !important;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-bottom: var(--spacing-xs);
}

.footer-disclaimer {
    font-size: 0.75rem !important;
    font-style: italic;
    color: var(--gray-medium) !important;
    max-width: 800px;
    margin: 0 auto;
}

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

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

/* Responsive Design */
@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 82px;
        left: -100%;
        flex-direction: column;
        background: var(--primary-light);
        width: 100%;
        padding: var(--spacing-md);
        gap: 0;
        transition: var(--transition-medium);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: var(--spacing-sm) 0;
        border-bottom: 1px solid var(--primary-lighter);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .menu-toggle {
        display: flex;
    }

    .theme-toggle {
        margin-left: var(--spacing-sm);
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .section {
        padding: var(--spacing-xl) 0;
    }

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

    .areas-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-title {
        font-size: 1.1rem;
    }

    .logo-subtitle {
        font-size: 0.55rem;
    }

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

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* =======================
   CHATBOT (OPENAI)
   ======================= */
.chatbot-fab {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-color, #2D8DD6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.chatbot-fab:hover {
    transform: translateY(-2px);
}

.chatbot-window {
    position: fixed;
    right: 22px;
    bottom: 92px;
    width: 340px;
    max-width: calc(100vw - 44px);
    height: 500px;
    max-height: calc(100vh - 140px);
    border-radius: 16px;
    background: var(--card-bg, #ffffff);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    display: none;
    z-index: 9999;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.chatbot-window.active {
    display: flex;
    flex-direction: column;
}

.chatbot-header {
    padding: 14px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.08);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.chatbot-title {
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 1.2;
}

.chatbot-subtitle {
    display: block;
    font-weight: 500;
    font-size: 12px;
    opacity: 0.85;
    margin-top: 3px;
}

.chatbot-close {
    border: none;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font-size: 18px;
    padding: 6px 8px;
    border-radius: 10px;
}

.chatbot-messages {
    padding: 14px;
    flex: 1;
    overflow-y: auto;
}

.chatbot-msg {
    max-width: 90%;
    padding: 10px 12px;
    border-radius: 12px;
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.35;
    white-space: pre-wrap;
}

.chatbot-msg.bot {
    background: rgba(0, 0, 0, 0.06);
    border-top-left-radius: 6px;
}

.chatbot-msg.user {
    background: var(--primary-color, #2D8DD6);
    color: white;
    margin-left: auto;
    border-top-right-radius: 6px;
}

.chatbot-footer {
    padding: 12px;
    display: flex;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.chatbot-step {
    display: flex;
    gap: 8px;
    width: 100%;
}

.chatbot-input {
    flex: 1;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    outline: none;
    font-size: 13px;
    width: 100%;
}

.chatbot-send {
    border: none;
    padding: 10px 14px;
    border-radius: 12px;
    cursor: pointer;
    background: var(--primary-color, #2D8DD6);
    color: #fff;
    font-weight: 600;
}

.chatbot-send:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Botão flutuante do chatbot: ícone + texto */
.chatbot-fab {
    position: fixed;
    right: 22px;
    bottom: 22px;

    height: 56px;
    width: 56px;

    border-radius: 50%;
    background: var(--primary-color, #2D8DD6);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);

    transition: transform 0.2s ease, opacity 0.2s ease;
}

.chatbot-fab:hover {
    transform: translateY(-2px);
}

.chatbot-icon {
    display: block;
    flex: 0 0 auto;
}

/* No mobile: esconder texto */
.chatbot-fab-text {
    display: none;
}

/* No desktop: botão vira "pílula" e mostra texto */
@media (min-width: 900px) {
    .chatbot-fab {
        width: auto;
        padding: 0 16px;
        border-radius: 999px;
        gap: 10px;
        justify-content: flex-start;
    }

    .chatbot-fab-text {
        display: inline;
        font-size: 13px;
        font-weight: 600;
        line-height: 1;
        white-space: nowrap;
    }
}

/* =======================
   CHATBOT - INDICADOR "DIGITANDO" (mais natural)
   ======================= */
.chatbot-typing {
    max-width: 85%;
    width: fit-content;
    padding: 10px 12px;
    border-radius: 12px;
    border-top-left-radius: 6px;

    background: rgba(0, 0, 0, 0.06);
    margin-bottom: 10px;

    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.chatbot-typing .chatbot-dots {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.chatbot-typing .chatbot-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.35);
    transform: translateY(0);
    animation: chatbot-dot-bounce 1.05s infinite ease-in-out;
}

.chatbot-typing .chatbot-dot:nth-child(2) {
    animation-delay: 0.15s;
}

.chatbot-typing .chatbot-dot:nth-child(3) {
    animation-delay: 0.30s;
}

@keyframes chatbot-dot-bounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.35;
    }

    50% {
        transform: translateY(-4px);
        opacity: 0.95;
    }
}
.member-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* Container base */
.alert {
    position: relative;
    padding: 14px 44px 14px 14px; /* espaço pro dismiss à direita */
    border-radius: 12px;
    border: 1px solid transparent;
    font-size: 14px;
    line-height: 1.4;
    margin: 12px 0;
    box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

/* Título opcional dentro do alert */
.alert strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

/* Mensagem */
.alert p {
    margin: 0;
}

/* Botão dismiss */
.alert .dismiss {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .7;
    transition: .2s ease;
}

.alert .dismiss:hover {
    opacity: 1;
    background: rgba(0,0,0,.06);
}

/* Tipos */
.alert-success {
    background: #ecfdf3;
    border-color: #b7f7cf;
    color: #065f46;
}

.alert-error {
    background: #fef2f2;
    border-color: #fecaca;
    color: #7f1d1d;
}

.alert-warning {
    background: #fffbeb;
    border-color: #fde68a;
    color: #78350f;
}

.alert-info {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #1e3a8a;
}
.footer-divider{
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,.15);
    margin: 12px 0;
}

.footer-instagram{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    opacity: .9;
    transition: .2s;
}

.footer-instagram:hover{
    opacity: 1;
    text-decoration: underline;
}