/**
 * ============================================================
 * IARA RESENDE CERIMONIAL - ESTILOS CUSTOMIZADOS
 * Author: Unbox | Marco Moura (https://unboxbr.com.br)
 * Data/Hora: 2026-01-19 15:05
 * Version: 3.7.0, Footer Alignment Harmony
 * ============================================================
 * 
 * PALETA DE CORES:
 * - Dourado Principal: #C5A059
 * - Fundo Escuro/Grafite: #2D2D2D
 * - Fundo Claro (Bege): #F7F3F0
 * ============================================================
 */

/* ============================================================
   CSS VARIABLES (Design Tokens)
   ============================================================ */
:root {
    /* Cores principais */
    --gold: #B28F4A;
    /* Escurecido para melhor contraste AA (mínimo 4.5:1 em branco) */
    --gold-light: #D4B577;
    --gold-dark: #8B6F35;
    --gold-hover: #7A4F41;

    /* Fundos */
    --bg-dark: #2D2D2D;
    --bg-darker: #1F1F1F;
    --bg-light: #F7F3F0;
    --bg-cream: #FAF8F5;
    --white: #FFFFFF;

    /* Textos */
    --text-dark: #2D2D2D;
    --text-medium: #5A5A5A;
    --text-light: #8A8A8A;
    --text-white: #FFFFFF;
    --text-cream: #E8E4E0;

    /* Tipografia */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Espaçamentos */
    --section-py: 100px;
    --section-py-mobile: 60px;

    /* Bordas */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 8px 24px rgba(197, 160, 89, 0.3);

    /* Cores personalizadas conforme solicitação */
    --brand-brown: #8B3D3D;
    --accessibility-blue: #2D58A7;

    /* Transições */
    --transition: 0.3s ease;

    /* Stable Viewport Height - Calculada via JavaScript no carregamento */
    --app-height: 100vh;
}

/* Override Global de Largura do Container (Padronização 1100px) */
@media (min-width: 1140px) {
    .container {
        max-width: 1100px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}


/* ============================================================
   BASE STYLES
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
    /* Ajustado para a altura real do header em scroll */
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 15px;
    overflow-x: hidden;
    max-width: 100vw;
    /* Prevenção de CLS relacionado a fontes */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::selection {
    background-color: var(--gold-light);
    color: var(--text-dark);
}

img {
    max-width: 100%;
    height: auto;
    font-display: swap;
    /* Melhor para performance de carregamento */
}

/* Prevenção de CLS para Imagens Críticas */
.logo-container {
    display: inline-flex;
    align-items: center;
    min-width: 160px;
    min-height: 32px;
}

@media (max-width: 1024px) {
    .logo-container {
        min-width: 100px;
        min-height: 24px;
    }
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.heading-xl {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.heading-lg {
    font-family: var(--font-serif);
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 500;
    line-height: 1.15;
}

.heading-md {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    line-height: 1.25;
}

.heading-sm {
    font-family: var(--font-serif);
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 500;
    line-height: 1.3;
}

.text-elegant {
    font-family: var(--font-serif);
    font-style: italic;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.header-nav {
    background: var(--white);
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-scrolled .header-nav {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    box-shadow: var(--shadow-sm);
}

/* Links do menu - Mais finos e elegantes como o original */
.nav-link {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.05em;
    text-transform: none;
    padding: 0.5rem 0;
    transition: all var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #7A4F41;
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: #7A4F41;
}

/* Botão do Header - Branco com borda dourada, 100% arredondado */
.header-nav .btn-primary {
    background: var(--white) !important;
    border: 1px solid #7A4F41 !important;
    color: #7A4F41 !important;
    padding: 0.6rem 1.5rem;
    font-size: 14px;
    font-weight: 600;
    box-shadow: none;
    letter-spacing: 0.05em;
    text-transform: none;
    border-radius: var(--radius-full) !important;
}

.header-nav .btn-primary:hover {
    background: #7A4F41 !important;
    color: var(--white) !important;
}

/* Mobile Navigation */
.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all var(--transition);
}

.mobile-nav-link:hover {
    color: #7A4F41;
    transform: translateX(8px);
}

/* ============================================================
   BUTTONS
   ============================================================ */
/* Botão Primário - Dourado Sólido */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background: #7A4F41;
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 2px solid #7A4F41;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 24px rgba(157, 112, 93, 0.2);
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
}

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

/* Botão Secundário - Outline Branco */
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 2px solid var(--white);
    border-radius: var(--radius-full);
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* Botão Outline Dourado */
.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 2px solid var(--gold);
    border-radius: var(--radius-full);
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    /* Small viewport height - altura estável, não muda com barra do navegador */
    min-height: var(--app-height, 100svh);
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #2D2D2D;
    /* Cor de fundo sólida para evitar flash branco */
}

.hero-section picture,
.hero-section img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(45, 45, 45, 0.5) 0%,
            rgba(45, 45, 45, 0.6) 100%);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    padding: var(--section-py) 0;
}

@media (max-width: 768px) {
    .section {
        padding: var(--section-py-mobile) 0;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Subtítulo com linhas douradas */
.section-subtitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    color: #825542;
    letter-spacing: 3.2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 0 1rem;
}

.section-subtitle.subtitle-simple::before,
.section-subtitle.subtitle-simple::after {
    display: none;
}

/* Divider */
.divider-gold {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 1.5rem auto;
}

/* ============================================================
   NOSSA ESSÊNCIA - Texto direto, sem card
   ============================================================ */
.essence-text {
    max-width: 900px;
    margin: 0 auto 3rem;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    line-height: 2;
    color: var(--text-medium);
    text-align: center;
}

.essence-text .highlight {
    color: var(--gold);
    font-weight: 600;
}

/* Grid de valores */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.value-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.value-icon i {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

.value-title {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.essencia-title {
    color: var(--brand-brown) !important;
}

.divider-heart {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 2.5rem;
}

.divider-heart::before,
.divider-heart::after {
    content: '';
    width: 100px;
    height: 1px;
    background: var(--gold);
    margin: 0 1.25rem;
}

.divider-heart i {
    color: var(--gold);
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

#essencia {
    min-height: calc(100vh - 80px);
    min-height: calc(100svh - 80px);
    /* Small viewport height */
    min-height: calc(var(--app-height, 100svh) - 80px);
    /* Descontando header */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.essence-card {
    background: var(--white);
    padding: 3.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    border-top: 3px solid var(--brand-brown);
}

.essence-card p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #666666;
}

.essence-card p strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* Acessibilidade */
.accessibility-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 90;
}

.accessibility-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--accessibility-blue);
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(45, 88, 167, 0.4);
    transition: all var(--transition);
}

.accessibility-btn:hover {
    transform: scale(1.1);
    background: #1e3f7a;
}

.about-image-wrapper {
    position: relative;
    padding-bottom: 25px;
    padding-right: 25px;
    height: 100%;
    display: flex;
}

.about-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    /* Garante que a imagem preencha o container */
}

.about-image picture {
    width: 100%;
    height: 100%;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Decorador em L no canto inferior direito */
.about-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    border-right: 6px solid #825542;
    border-bottom: 6px solid #825542;
    border-radius: 4px;
    /* Arredondar o canto do L */
    z-index: 1;
}

#sobre {
    background-color: #ECE6E4 !important;
}

#sobre .section-subtitle.subtitle-simple {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 19.2px !important;
    color: #825542 !important;
    letter-spacing: 0.1em;
}

#sobre h2 {
    font-family: 'Merriweather', serif !important;
    font-size: 32px !important;
    font-weight: 300 !important;
    line-height: 38.4px !important;
    color: #54595F !important;
}

#sobre p {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 27px !important;
    color: #666666 !important;
}

.about-divider {
    width: 60px;
    height: 6px;
    /* Aumentado conforme solicitado */
    background: #825542;
    margin: 1.5rem 0;
    border-radius: 3px;
    /* Arredondar as pontas da linha */
}

/* Selo/Etiqueta dourada */
.about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 2;
}

/* Checklist items */
.checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.checklist-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    margin-top: 2px;
}

.checklist-icon i {
    width: 14px;
    height: 14px;
    color: var(--white);
}

.checklist-text {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* ============================================================
   SERVIÇOS - Ícones outline
   ============================================================ */
#servicos .service-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 12px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
}

#servicos .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.15);
}

#servicos .service-icon {
    width: 50px;
    height: 50px;
    color: #825542;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 auto;
    /* Centralizar horizontalmente dentro do flex-column */
}

#servicos .service-icon i,
#servicos .service-icon svg {
    width: 50px !important;
    height: 50px !important;
    fill: #825542;
}

#servicos .section-subtitle {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 19.2px !important;
    color: #825542 !important;
    text-transform: uppercase !important;
}

#servicos h2 {
    font-family: 'Merriweather', serif !important;
    font-size: 32px !important;
    font-weight: 300 !important;
    line-height: 38.4px !important;
    color: #54595F !important;
}

#servicos h3 {
    font-family: 'Merriweather', serif !important;
    font-size: 22px !important;
    color: #825542 !important;
    font-weight: 500 !important;
    line-height: 33px !important;
    /* 22 * 1.5 */
    margin: 0;
}

#servicos p {
    font-family: 'Montserrat', sans-serif !important;
    color: #666666 !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 27px !important;
    /* 18 * 1.5 */
    margin: 0;
}

.divider-service {
    width: 80px;
    height: 6px;
    background: #7A4F41;
    margin: 1.5rem auto;
    border-radius: 3px;
}

/* ============================================================
   DEPOIMENTOS - Prova Social
   ============================================================ */
.testimonials-section {
    min-height: 100vh;
    min-height: 100svh;
    /* Small viewport height */
    min-height: var(--app-height, 100svh);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #EDEBEB !important;
    padding: 100px 0;
}

.testimonials-section .section-subtitle {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 19.2px !important;
    color: #825542 !important;
    text-transform: uppercase !important;
}

.testimonials-section h2 {
    font-family: 'Merriweather', serif !important;
    font-size: 32px !important;
    font-weight: 300 !important;
    line-height: 38.4px !important;
    color: #54595F !important;
}

.testimonial-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 12px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-quote {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    color: #666666 !important;
    font-style: italic;
    position: relative;
    padding-top: 30px;
}

.testimonial-quote::before {
    content: '\201C';
    font-family: 'Merriweather', serif;
    font-size: 60px;
    color: var(--gold);
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    opacity: 0.5;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.testimonial-name {
    font-family: 'Merriweather', serif !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    color: #54595F !important;
}

.testimonial-event {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: var(--gold) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em;
}

/* Divisor de Depoimentos */
.divider-testimonial {
    width: 80px;
    height: 6px;
    background: #7A4F41;
    margin: 1.5rem auto;
    border-radius: 3px;
}

/* ============================================================
   PORTFÓLIO - Fundo Grafite
   ============================================================ */
.portfolio-section {
    background-color: #ECE6E4 !important;
}

.portfolio-section .heading-lg {
    color: #54595F !important;
}

.portfolio-section .section-description {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
    color: #666666 !important;
}

.portfolio-section .btn-primary {
    background-color: #825542 !important;
    border-color: #825542 !important;
    color: var(--white) !important;
    box-shadow: none !important;
}

.portfolio-section .btn-primary:hover {
    background-color: #7D5748 !important;
    border-color: #7D5748 !important;
}

.portfolio-card-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.portfolio-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-info {
    padding: 25px 20px;
    background: var(--white);
    text-align: left;
}

.portfolio-date {
    display: block;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #C5A059 !important;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.portfolio-title {
    font-family: 'Merriweather', serif !important;
    font-size: 18px !important;
    color: #54595F !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    margin: 0;
}

/* ============================================================
   CONTATO - Card branco flutuante
   ============================================================ */
.contact-section {
    position: relative;
    background-color: #7A4F41 !important;
    min-height: 100vh;
    min-height: 100svh;
    /* Small viewport height */
    min-height: var(--app-height, 100svh);
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.contact-section .section-subtitle {
    color: #F5EFDB !important;
    justify-content: flex-start !important;
}

.contact-section .heading-lg {
    color: var(--white) !important;
}

.contact-section .section-description {
    color: rgba(255, 255, 255, 0.8) !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 18px !important;
}

.contact-section .contact-info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    text-decoration: none !important;
}

.contact-section .contact-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
}

.contact-section .contact-info-item:hover .contact-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.contact-section .contact-icon-wrapper i,
.contact-section .contact-icon-wrapper svg {
    width: 28px !important;
    height: 28px !important;
    color: var(--white) !important;
    stroke: var(--white) !important;
}

.contact-section .contact-info-text {
    display: flex;
    flex-direction: column;
}

.contact-section .contact-info-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 2px;
}

.contact-section .contact-info-value {
    font-size: 20px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.contact-form-card {
    background: var(--white);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
}

.contact-form-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form-card .subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

/* ============================================================
   FORMULÁRIO
   ============================================================ */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-transform: capitalize;
    letter-spacing: 0.02em;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--bg-cream);
    border: 1px solid #E0DCD8;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-card .btn-primary {
    background-color: #7A4F41 !important;
    border-color: #7A4F41 !important;
    color: var(--white) !important;
    transition: all var(--transition);
}

.contact-form-card .btn-primary:hover {
    background-color: #855d4c !important;
    border-color: #855d4c !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(157, 112, 93, 0.3);
}

.footer {
    background: var(--white);
    color: var(--text-dark);
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
}

.footer-grid>div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-top: 1rem;
}

.footer-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    margin-top: 0;
}

/* Alinha os títulos das colunas 2, 3 e 4 no topo */
.footer-grid>div:not(:first-child) .footer-title,
.footer-grid>div:not(:first-child)>h4 {
    margin-top: 0;
}

.footer-link {
    display: flex;
    align-items: center;
    color: var(--text-medium);
    font-size: 0.9rem;
    padding: 0.4rem 0;
    transition: all var(--transition);
    text-decoration: none;
}

.footer-link:hover {
    color: #7A4F41;
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.4rem 0;
    color: var(--text-medium);
    font-size: 0.9rem;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.footer-contact-item i,
.footer-contact-item svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    flex-shrink: 0;
    color: #7A4F41;
    margin-top: 4px;
    /* Ajuste preciso para alinhar com o centro da primeira linha de texto */
}

.footer-contact-item a {
    white-space: nowrap;
    /* Não quebra linha */
    color: inherit;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #7A4F41;
    /* Marrom padrão do site */
    color: var(--white);
    border-radius: 50%;
    transition: all var(--transition);
}

.footer-social-link:hover {
    background: #855d4c;
    /* Marrom mais escuro no hover */
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--white);
    font-size: 0.8rem;
    opacity: 1;
}

.footer-bottom a {
    color: #E96608;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
}

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

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}

/* ============================================================
   GALLERY (Portfolio Single)
   ============================================================ */
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    /* Alinhado na parte inferior */
    right: 24px;
    z-index: 90;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    /* Padronizado para alinhar com o cookie */
    height: 52px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    /* Shadow mais discreto e igual ao cookie */
    transition: all var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* ============================================================
   ACCESSIBILITY/COOKIE FLOAT
   ============================================================ */
.accessibility-float {
    position: fixed;
    bottom: 24px;
    /* Alinhado com o WhatsApp */
    left: 24px;
    z-index: 90;
}

.accessibility-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: #B44A0D;
    /* Laranja Unbox */
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(242, 108, 34, 0.3);
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

.accessibility-btn:hover {
    transform: scale(1.1);
    background: #d45a19;
}

/* LGPD Banner Modal */
#lgpd-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 1.5rem;
    display: none;
    border-top: 3px solid #B44A0D;
}

.lgpd-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .lgpd-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.lgpd-text {
    flex: 1;
}

.lgpd-text p {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.6;
}

.lgpd-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-lgpd-accept {
    background: #B44A0D;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-lgpd-accept:hover {
    background: #d45a19;
    transform: translateY(-2px);
}

.btn-lgpd-reject {
    background: #f3f4f6;
    color: #4b5563;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-lgpd-reject:hover {
    background: #e5e7eb;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-gold {
    color: var(--gold);
}

.bg-dark {
    background-color: var(--bg-dark);
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-cream {
    background-color: var(--bg-cream);
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ============================================================
   ADMIN STYLES
   ============================================================ */
.admin-sidebar {
    background: var(--bg-dark);
}

.admin-nav-link {
    display: flex;
    align-items: center;
    padding: 0.875rem 1.25rem;
    color: var(--text-light);
    border-radius: 8px;
    transition: all var(--transition);
    text-decoration: none;
}

.admin-nav-link:hover,
.admin-nav-link.active {
    background: rgba(197, 160, 89, 0.15);
    color: var(--gold);
}

/* ============================================================
   RESPONSIVE - TABLET (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    :root {
        --section-py: 80px;
    }

    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    /* Hero Section */
    .hero-section {
        min-height: 85vh;
    }

    .hero-section .heading-xl {
        font-size: 2.5rem;
    }

    /* Grid Adjustments */
    .grid.lg\:grid-cols-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .grid.lg\:grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    /* About Section */
    .about-image {
        max-width: 450px;
        margin: 0 auto;
    }

    /* Contact Form */
    .contact-form-card {
        padding: 2rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   RESPONSIVE - MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
    :root {
        --section-py: 60px;
    }

    /* Typography */
    .heading-xl {
        font-size: 2rem;
    }

    .heading-lg {
        font-size: 1.625rem;
    }

    .heading-md {
        font-size: 1.375rem;
    }

    body {
        font-size: 14px;
    }

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

    .section-subtitle::before,
    .section-subtitle::after {
        width: 25px;
        margin: 0 0.75rem;
    }

    /* Buttons - Touch Friendly (min 44x44px) */
    .btn-primary,
    .btn-outline,
    .btn-outline-gold {
        padding: 0.875rem 1.75rem;
        font-size: 0.7rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Hero */
    .hero-section {
        min-height: 100vh;
        min-height: 100dvh;
        /* Dynamic viewport height for mobile */
    }

    .hero-section .heading-xl {
        font-size: 1.875rem;
        line-height: 1.2;
    }

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

    /* Services Grid */
    .grid.md\:grid-cols-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Service Cards */
    .service-card {
        padding: 1.5rem;
    }

    /* Portfolio Grid */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .portfolio-card-item {
        aspect-ratio: 4/3;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-quote {
        font-size: 1rem;
    }

    /* Contact */
    .contact-form-card {
        padding: 1.5rem;
        margin: 0 -0.5rem;
        border-radius: var(--radius-lg);
    }

    .contact-form-card .grid {
        grid-template-columns: 1fr;
    }

    /* Footer - Compacto para Mobile */
    .footer {
        padding-top: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        text-align: left;
        gap: 1.5rem 1rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-brand p {
        font-size: 0.8rem;
        line-height: 1.6;
        margin-top: 0.75rem;
    }

    .footer-brand img {
        height: 40px;
        margin-bottom: 0.5rem;
    }

    .footer-social {
        justify-content: center;
        margin-top: 1rem;
    }

    .footer-social-link {
        width: 36px;
        height: 36px;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .footer-link {
        font-size: 0.8rem;
        padding: 0.3rem 0;
    }

    .footer-contact-item {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        gap: 0.5rem;
    }

    .footer-contact-item i,
    .footer-contact-item svg {
        width: 14px;
        height: 14px;
        min-width: 14px;
    }

    .footer-bottom {
        text-align: center;
        margin-top: 2rem;
        padding: 1rem 60px;
        /* Padding lateral para dar espaço aos botões flutuantes */
    }

    .footer-bottom p {
        font-size: 0.7rem;
    }

    /* Botões centralizados em mobile */
    .flex.flex-col.sm\:flex-row,
    .flex.sm\:flex-row {
        align-items: center;
    }

    /* Seção Sobre - Botões centralizados */
    #sobre .flex.flex-col,
    #sobre .flex.sm\:flex-row {
        justify-content: center;
        text-align: center;
    }

    /* Floating Buttons Alignment Sync */
    .whatsapp-float,
    .accessibility-float {
        bottom: 20px !important;
    }

    .whatsapp-float {
        right: 16px;
    }

    .accessibility-float {
        left: 16px;
    }

    .whatsapp-btn {
        width: 52px;
        height: 52px;
    }

    /* Mobile Menu - Com viewport dinâmico para evitar saltos */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100vh;
        height: 100dvh;
        /* Dynamic viewport - se ajusta com barra do navegador */
        background: var(--white);
        z-index: 100;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu .nav-link {
        font-size: 1.25rem;
        padding: 0.75rem;
    }

    /* Hide desktop nav on mobile */
    .desktop-nav {
        display: none;
    }

    /* Show hamburger on mobile */
    .mobile-menu-toggle {
        display: flex;
    }
}

/* ============================================================
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .heading-xl {
        font-size: 1.75rem;
    }

    .heading-lg {
        font-size: 1.5rem;
    }

    /* Full width buttons on small screens */
    .btn-primary,
    .btn-outline,
    .btn-outline-gold {
        width: 100%;
        max-width: 300px;
    }

    /* Hero CTA */
    .hero-section .flex.flex-col {
        width: 100%;
        padding: 0 1rem;
    }

    .hero-section .btn-primary,
    .hero-section .btn-outline {
        width: 100%;
    }

    /* Service Card Icons */
    .service-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .service-icon-wrapper svg {
        width: 28px;
        height: 28px;
    }

    /* Contact info items - Compacto para Mobile */
    .contact-section {
        padding: 60px 0;
        min-height: auto;
    }

    .contact-section .contact-info-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 1.25rem;
        gap: 0.75rem;
    }

    .contact-section .contact-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .contact-section .contact-icon-wrapper i,
    .contact-section .contact-icon-wrapper svg {
        width: 22px !important;
        height: 22px !important;
    }

    .contact-section .contact-info-label {
        font-size: 12px;
    }

    .contact-section .contact-info-value {
        font-size: 16px;
    }

    .contact-section .space-y-6 {
        margin-top: 1.5rem;
    }

    /* Hero buttons centralizados */
    .hero-section .flex.flex-col {
        align-items: center;
    }
}

/* ============================================================
   RESPONSIVE - ADMIN PANEL
   ============================================================ */
@media (max-width: 1024px) {

    /* Sidebar */
    .sidebar {
        transform: translateX(-100%);
        position: fixed;
        z-index: 50;
    }

    .sidebar.sidebar-open {
        transform: translateX(0);
    }

    /* Main content full width */
    .admin-main {
        margin-left: 0;
    }
}

@media (max-width: 768px) {

    /* Admin Header */
    .admin-header {
        padding: 0.75rem 1rem;
    }

    .admin-header h1 {
        font-size: 1rem;
    }

    /* User dropdown - hide text on mobile */
    .admin-header .user-name {
        display: none;
    }

    /* Admin Content Padding */
    .admin-content {
        padding: 1rem;
    }

    /* Tables - Responsive */
    .admin-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .admin-table {
        min-width: 600px;
    }

    /* Stats Cards */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-card .stat-value {
        font-size: 1.5rem;
    }

    /* Form layouts */
    .form-grid {
        grid-template-columns: 1fr;
    }

    /* Modals - Full screen on mobile */
    .modal-content {
        max-width: 100%;
        margin: 0;
        min-height: 100vh;
        border-radius: 0;
    }

    /* Tabs - Horizontal scroll */
    .tabs-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .tabs-container::-webkit-scrollbar {
        display: none;
    }

    .tab-link {
        white-space: nowrap;
        padding: 0.75rem 1rem;
    }

    /* Buttons in admin */
    .admin-btn {
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
    }

    /* Lead detail - Stack columns */
    .lead-detail-grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials admin - Stack */
    .testimonial-admin-card {
        flex-direction: column;
    }

    .testimonial-admin-card .avatar {
        margin-bottom: 1rem;
    }

    .testimonial-admin-actions {
        margin-top: 1rem;
        justify-content: center;
    }
}

/* ============================================================
   ACCESSIBILITY IMPROVEMENTS
   ============================================================ */
/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--gold);
    color: var(--white);
    padding: 0.5rem 1rem;
    z-index: 200;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Focus states */
*:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Remove default focus for mouse users */
*:focus:not(:focus-visible) {
    outline: none;
}

/* High contrast for inputs */
input:focus,
textarea:focus,
select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
}

/* Touch targets minimum 44x44px */
a,
button,
input[type="submit"],
input[type="button"] {
    min-height: 44px;
    min-width: 44px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {

    /* Admin panel respects dark mode preference */
    .admin-body {
        /* Dark mode desabilitado por padrão - usar classes para ativar */
        --dm-placeholder: none;
    }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {

    .header-nav,
    .whatsapp-float,
    footer,
    #back-to-top,
    .mobile-menu-toggle,
    .sidebar,
    .admin-header,
    .no-print {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    a {
        text-decoration: underline;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }

    img {
        max-width: 100%;
        page-break-inside: avoid;
    }

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

    .page-break {
        page-break-before: always;
    }
}

/* ============================================================
   LANDSCAPE MOBILE ADJUSTMENTS
   ============================================================ */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 4rem 0;
    }

    .hero-section .heading-xl {
        font-size: 1.75rem;
    }

    .section {
        padding: 3rem 0;
    }
}

/* ============================================================
   MODAL DE SUCESSO
   ============================================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(45, 45, 45, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay:not(.hidden) {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    transform: none !important;
}

body.modal-open {
    overflow: hidden !important;
    padding-right: 17px;
}

.modal-content {
    background: var(--white);
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-md);
    position: relative;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-top: 4px solid #7A4F41;
}

.modal-overlay:not(.hidden) .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--text-light);
    background: none;
    border: none;
    cursor: pointer;
    transition: color var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #7A4F41;
}

.success-icon-wrapper {
    width: 100px;
    height: 100px;
    background: #fdf8f0;
    color: #7A4F41;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon-wrapper i {
    width: 60px;
    height: 60px;
    stroke-width: 1.5;
}

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