/* Lemar Climatização | style.css
/* Versão: 2.2 (Legibilidade Aprimorada e Animações)
/* Descrição: Folha de estilos completa, com ajustes de contraste e
/* novas animações para destacar os diferenciais.
/* =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ======================================= */
/* VARIÁVEIS DE COR E TEMA (ROOT)
/* ======================================= */
:root {
    /* Cores Primárias (Modo Claro) */
    --primary-color: #002E5D;
    --primary-dark: #001f3f;
    --primary-light: rgba(0, 46, 93, 0.1);

    /* Cores de Destaque */
    --success-color: #00A859;
    --success-dark: #008a48;
    --warning-color: #FFC300;
    --error-color: #ef4444;

    /* Cores de UI e Texto (Modo Claro) - CONTRASTE MELHORADO */
    --body-bg: #f8fafc;
    --light-color: #FFFFFF;
    --dark-color: #0f172a; /* Título principal, mais escuro */
    --text-color: #334155; /* Cor de texto principal, mais escura e legível */
    --text-light: #475569; /* Cor de texto secundária, ainda com bom contraste */
    --gray-color: #e2e8f0;
    --border-color: #cbd5e1;

    /* Tipografia */
    --font-family: 'Montserrat', sans-serif;

    /* Sombras e Transições */
    --transition-fast: all 0.2s ease-out;
    --transition-medium: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* ======================================= */
/* MODO ESCURO (DARK MODE) - CONTRASTE MELHORADO
/* ======================================= */
body.dark-mode {
    /* Cores Primárias (Modo Escuro) */
    --primary-color: #3B82F6; /* Azul brilhante para contraste */
    --primary-dark: #2563EB;
    --primary-light: rgba(59, 130, 246, 0.15);

    /* Cores de Destaque */
    --success-color: #22C55E;
    --success-dark: #16a34a;
    
    /* Cores de UI e Texto (Modo Escuro) */
    --body-bg: #0D1B2A; 
    --light-color: #1B263B;
    --dark-color: #E0E1DD; 
    --text-color: #cbd5e1; /* Texto principal mais claro */
    --text-light: #94a3b8; 
    --gray-color: #334155; 
    --border-color: #475569; /* Borda um pouco mais visível */

    /* Sombras */
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ======================================= */
/* RESET E ESTILOS BASE
/* ======================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 1rem = 10px */
}

body {
    font-family: var(--font-family);
    font-size: 1.6rem;
    line-height: 1.7; /* Aumentado para melhor legibilidade */
    background-color: var(--body-bg);
    color: var(--text-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
    overflow: hidden;
}

/* Tipografia Base */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700; /* Mais peso para títulos */
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

p {
    margin-bottom: 1.5rem;
    font-weight: 400;
}

p.section-description {
    color: var(--text-light);
    font-weight: 400;
    max-width: 650px; /* Limita a largura para leitura fácil */
    margin-left: auto;
    margin-right: auto;
}


a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease, padding 0.3s ease;
}

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; }

/* ======================================= */
/* LAYOUT E COMPONENTES REUTILIZÁVEIS
/* ======================================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
}

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

.section-subtitle {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3.6rem;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* --- Botões --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.4rem;
    border-radius: 0.8rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: capitalize;
    cursor: pointer;
    transition: var(--transition-medium);
    border: 2px solid transparent;
    white-space: nowrap;
    will-change: transform;
}

.btn i {
    margin-right: 0.8rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-success {
    background-color: var(--success-color);
    color: #fff;
    border-color: var(--success-color);
}

.btn-success:hover {
    background-color: var(--success-dark);
    border-color: var(--success-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 168, 89, 0.3);
}

.btn-lg {
    padding: 1.4rem 2.8rem;
    font-size: 1.6rem;
}

.btn-block {
    display: block;
    width: 100%;
}


/* ======================================= */
/* NOVA TELA DE LOADING
/* ======================================= */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--body-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0s 0.5s;
}

#splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-text {
    margin-top: 3rem;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--primary-color);
    animation: pulse 2s infinite;
}

.loader {
  position: relative;
  width: 200px;
  height: 200px;
  perspective: 600px;
  transform-style: preserve-3d;
}

.dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin-top: -50px;
  margin-left: -50px;
  border-radius: 100px;
  border: 20px solid var(--primary-color);
  transform-style: preserve-3d;
  transform: scale(0) rotateX(60deg);
  animation: dot 3s cubic-bezier(.67,.08,.46,1.5) infinite;
  opacity: 0;
}

.dot:nth-child(2) { animation-delay: 200ms; }
.dot:nth-child(3) { animation-delay: 400ms; }
.dot:nth-child(4) { animation-delay: 600ms; }
.dot:nth-child(5) { animation-delay: 800ms; }
.dot:nth-child(6) { animation-delay: 1000ms; }
.dot:nth-child(7) { animation-delay: 1200ms; }
.dot:nth-child(8) { animation-delay: 1400ms; }

@keyframes dot {
  0% {
    opacity: 0;
    border-color: var(--primary-light);
    transform: rotateX(60deg) rotateY(45deg) translateZ(-100px) scale(0.1);
  }
  40% {
    opacity: 1;
    transform: rotateX(0deg) rotateY(20deg) translateZ(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: rotateX(60deg) rotateY(-45deg) translateZ(-100px) scale(0.1);
  }
}

@keyframes pulse {
  0% { opacity: 0.7; }
  50% { opacity: 1; }
  100% { opacity: 0.7; }
}


/* ======================================= */
/* HEADER & NAVEGAÇÃO
/* ======================================= */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, height 0.4s ease;
    height: 9rem;
    background-color: transparent;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    height: 7rem;
}

body.dark-mode .header.scrolled {
    background-color: rgba(13, 27, 42, 0.85);
}

/* Centralização da navbar */
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar {
    flex-grow: 1;
    display: flex;
    align-items: center;      /* Centraliza verticalmente */
    justify-content: center;  /* Centraliza horizontalmente */
    height: 100%;
}

.nav-list {
    display: flex;
    align-items: center;      /* Centraliza verticalmente */
    justify-content: center;  /* Centraliza horizontalmente */
    gap: 1.8rem;
    width: 100%;
    height: 100%;
}

.nav-link {
    display: flex;
    align-items: center;      /* Centraliza verticalmente ícone e texto */
    justify-content: center;  /* Centraliza horizontalmente */
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--dark-color);
    position: relative;
    transition: color 0.3s ease;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    padding: 0.5rem;
}

.logo img {
    max-height: 60px;
    width: auto;
    transition: max-height 0.4s ease;
}



.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.header.scrolled .nav-link {
    color: var(--text-color);
}
body.dark-mode .nav-link {
    color: #fff;
}


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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 2.4rem;
    color: var(--dark-color);
    cursor: pointer;
}

body.dark-mode .mobile-menu-btn {
    color: #fff;
}


/* --- Theme Toggle Switch --- */
.toggleWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.7);
}
.toggleWrapper .input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
    left: -9999px;
}
.toggle {
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: 90px;
  height: 50px;
  background-color: #87CEEB; /* Céu azul claro */
  border-radius: 84px;
  transition: background-color 200ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.toggle__handler {
  display: inline-block;
  position: relative;
  z-index: 1;
  top: 3px;
  left: 3px;
  width: 44px;
  height: 44px;
  background-color: #FFC300;
  border-radius: 50px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: all 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform: rotate(0);
}

.input:checked + .toggle {
    background-color: #1e3a5f; /* Céu noturno */
}

.input:checked + .toggle .toggle__handler {
    background-color: #f8fafc; /* Lua */
    transform: translate3d(40px, 0, 0) rotate(0);
}

.toggle__handler .crater {
  position: absolute;
  background-color: #e2e8f0;
  opacity: 0;
  transition: opacity 200ms ease-in-out;
  border-radius: 100%;
}
.toggle__handler .crater--1 { top: 18px; left: 10px; width: 4px; height: 4px; }
.toggle__handler .crater--2 { top: 28px; left: 22px; width: 6px; height: 6px; }
.toggle__handler .crater--3 { top: 10px; left: 25px; width: 8px; height: 8px; }

.input:checked + .toggle .toggle__handler .crater { opacity: 1; }

.star { position: absolute; background-color: #fff; transition: all 300ms cubic-bezier(0.445, 0.05, 0.55, 0.95); border-radius: 50%; }
.star--1 { top: 10px; left: 35px; z-index: 0; width: 2px; height: 2px; }
.star--2 { top: 18px; left: 28px; z-index: 1; width: 3px; height: 3px; }
.star--3 { top: 27px; left: 40px; z-index: 0; width: 2px; height: 2px; }
.star--4, .star--5, .star--6 { opacity: 0; transition: all 300ms 0 cubic-bezier(0.445, 0.05, 0.55, 0.95); }
.star--4 { top: 16px; left: 11px; z-index: 0; width: 2px; height: 2px; transform: translate3d(3px, 0, 0); }
.star--5 { top: 32px; left: 17px; z-index: 0; width: 3px; height: 3px; transform: translate3d(3px, 0, 0); }
.star--6 { top: 36px; left: 28px; z-index: 0; width: 2px; height: 2px; transform: translate3d(3px, 0, 0); }

.input:checked + .toggle .star { opacity: 1; }
.input:checked + .toggle .star--4 { transition: all 300ms 200ms cubic-bezier(0.445, 0.05, 0.55, 0.95); }
.input:checked + .toggle .star--5 { transition: all 300ms 300ms cubic-bezier(0.445, 0.05, 0.55, 0.95); }
.input:checked + .toggle .star--6 { transition: all 300ms 400ms cubic-bezier(0.445, 0.05, 0.55, 0.95); }


/* ======================================= */
/* SEÇÃO HERO
/* ======================================= */
.hero {
    position: relative;
    padding-top: 16rem;
    padding-bottom: 10rem;
    background: linear-gradient(135deg, #f0f4f8 0%, var(--light-color) 100%);
    overflow: hidden;
}
body.dark-mode .hero {
     background: linear-gradient(135deg, #0D1B2A 0%, #111827 100%);
}
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
}
.hero-content { flex: 1; }

.hero-title {
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: var(--dark-color);
}
.hero-subtitle {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 500px;
}
.hero-buttons {
    display: flex;
    gap: 2rem;
}

/* ======================================= */
/* SEÇÃO FEATURES (DIFERENCIAIS)
/* ======================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
    gap: 3rem;
}
.feature-card {
    background-color: var(--light-color);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
    border: 1px solid var(--border-color);
}
.feature-card[data-modal-target] { cursor: pointer; }
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.feature-icon {
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    border-radius: 50%;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 2.4rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-10deg);
}

body.dark-mode .feature-icon {
    background-color: rgba(59, 130, 246, 0.15);
}
.feature-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
.feature-card p {
    color: var(--text-color); 
    margin-bottom: 2rem;
}

body.dark-mode .feature-card p {
    color: var(--text-light);
}

.feature-link {
    display: inline-flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
}
.feature-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}
.feature-card[data-modal-target]:hover .feature-link i {
    transform: translateX(5px);
}


/* ======================================= */
/* NOVOS CARDS PREMIUM (DESTAQUE)
/* ======================================= */
.premium-card {
    background: linear-gradient(145deg, var(--light-color), var(--body-bg));
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent,
        rgba(0, 46, 93, 0.3),
        transparent 30%
    );
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}
body.dark-mode .premium-card::before {
    background: conic-gradient(
        transparent,
        rgba(59, 130, 246, 0.5),
        transparent 30%
    );
}

.premium-card:hover::before {
    opacity: 1;
}

.premium-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 46, 93, 0.2);
}

@keyframes rotate {
    100% {
        transform: rotate(1turn);
    }
}

.premium-card .feature-icon {
    background-color: var(--primary-color);
    color: #fff;
}
.premium-card p {
    color: var(--text-light);
}
.certified-badge, .guarantee-badge, .team-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.certified-badge {
    background-color: #e0f2fe;
    color: #0c4a6e;
}
.guarantee-badge {
    background-color: #f0fdf4;
    color: #15803d;
}
.team-badge {
    background-color: #fefce8;
    color: #854d0e;
}


/* ======================================= */
/* SEÇÃO SERVICES (SERVIÇOS)
/* ======================================= */
.services { background-color: var(--primary-light); }
body.dark-mode .services { background-color: #0A1622; }
.services-tabs {
    background-color: var(--light-color);
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.tab-buttons {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}
.tab-btn {
    flex: 1;
    padding: 2rem;
    background: none;
    border: none;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-light); 
    cursor: pointer;
    transition: color 0.3s ease, background-color 0.3s ease;
    text-align: center;
    border-bottom: 3px solid transparent;
}
.tab-btn.active {
    color: var(--primary-color);
    background-color: var(--primary-light);
    border-bottom-color: var(--primary-color);
}
body.dark-mode .tab-btn.active {
    background-color: var(--primary-light);
}

.tab-contents { padding: 4rem; }
.tab-content { display: none; }
.tab-content.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    animation: fadeIn 0.6s ease-in-out;
}
.content-image { flex: 1; border-radius: 1rem; overflow: hidden; }
.content-text { flex: 1; }
.content-text h3 { font-size: 2.8rem; margin-bottom: 2rem; }
.content-text p { color: var(--text-color); margin-bottom: 2rem; }
.content-text ul { margin-bottom: 3rem; }
.content-text ul li { display: flex; align-items: center; margin-bottom: 1.5rem; color: var(--text-color); font-weight: 500; }
.content-text ul li i { margin-right: 1.5rem; color: var(--success-color); font-size: 1.8rem; }

/* ======================================= */
/* SEÇÃO BRANDS (MARCAS)
/* ======================================= */
.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5rem;
}
.brands-grid img {
    max-height: 50px;
    max-width: 150px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.brands-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}
body.dark-mode .brands-grid img {
    filter: brightness(0) invert(1) grayscale(50%);
    opacity: 0.6;
}
body.dark-mode .brands-grid img:hover {
    filter: brightness(1) invert(0) grayscale(0%);
    opacity: 1;
}

/* ======================================= */
/* SEÇÃO TESTIMONIALS (DEPOIMENTOS)
/* ======================================= */
.testimonials { background-color: var(--primary-light); }
body.dark-mode .testimonials { background-color: #0A1622; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 3rem;
}
.testimonial-card {
    background-color: var(--light-color);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonial-card p {
    flex-grow: 1;
    font-style: italic;
    color: var(--text-color);
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 2rem;
}

.testimonial-card p::before {
    content: '“';
    position: absolute;
    left: 0;
    top: -1rem;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.2;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.testimonial-author img {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}
.testimonial-author h4 {
    margin-bottom: 0.2rem;
    font-size: 1.7rem;
}
.testimonial-author span {
    font-size: 1.3rem;
    color: var(--text-light);
}
.testimonial-rating {
    color: var(--warning-color);
    font-size: 1.6rem;
}
.verified-badge {
    color: var(--success-color);
    font-size: 1.3rem;
    margin-left: 0.5rem;
    font-weight: normal;
}

/* ======================================= */
/* SEÇÃO CONTACT (CONTATO)
/* ======================================= */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    background-color: var(--light-color);
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    padding: 5rem;
    align-items: start;
}
.contact-info .section-header { text-align: left; }
.contact-info .section-header .section-title::after {
    left: 0;
    transform: none;
}
.contact-info .section-description { margin-left: 0; margin-right: 0; }
.info-items { margin: 3rem 0; }
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
}
.info-icon {
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.8rem;
    flex-shrink: 0;
}
.info-text h3 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.info-text p { color: var(--text-light); margin-bottom: 0; }
.contact-social h3 { font-size: 1.8rem; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 1.5rem; }
.social-links a {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.6rem;
    transition: var(--transition-medium);
    will-change: transform;
}
.social-links a:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px) scale(1.1);
}

/* --- Form Styles --- */
.contact-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}
.form-input {
    width: 100%;
    padding: 1.2rem 0;
    border: none;
    border-bottom: 2px solid var(--border-color);
    background-color: transparent;
    font-size: 1.6rem;
    color: var(--text-color);
    outline: none;
    transition: border-color 0.3s ease;
    position: relative;
    z-index: 1;
}
.floating-label label {
    position: absolute;
    top: 1.2rem;
    left: 0;
    color: var(--text-light);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 0;
}
.form-input:focus {
    border-bottom-color: var(--primary-color);
}
.form-input:focus + label,
.form-input:not(:placeholder-shown) + label,
select.form-input:valid + label {
    top: -1.5rem;
    font-size: 1.2rem;
    color: var(--primary-color);
}
select.form-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0rem center;
    background-size: 1.2em;
    cursor: pointer;
}
body.dark-mode select.form-input {
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23e2e8f0' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}
body.dark-mode select.form-input option {
    background: var(--light-color);
    color: var(--dark-color);
}
textarea.form-input {
    resize: vertical;
    min-height: 80px;
}

/* --- Horário de Funcionamento --- */
.business-hours {
    background-color: var(--primary-light);
    padding: 2.5rem;
    border-radius: 1rem;
    margin-bottom: 2.5rem;
}
.hours-title {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.hours-title i {
    color: var(--primary-color);
}
.hours-list {
    list-style: none;
    padding: 0;
    font-size: 1.5rem;
}
.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}
.hours-list li:last-child {
    border-bottom: none;
}
.hours-list span:first-child {
    font-weight: 500;
    color: var(--text-color);
}
.hours-list span.closed {
    color: var(--error-color);
    font-weight: 500;
}


/* ======================================= */
/* SEÇÃO CTA (CALL TO ACTION)
/* ======================================= */
.cta-section {
    position: relative;
    background: var(--primary-dark);
    padding: 6rem 0;
    overflow: hidden;
    color: #fff;
    text-align: center;
}
.cta-section h2 { font-size: 3.2rem; color: #fff; }
.cta-section p { font-size: 1.8rem; color: rgba(255, 255, 255, 0.9); max-width: 600px; margin: 1rem auto 3rem auto; }


/* ======================================= */
/* FOOTER (RODAPÉ)
/* ======================================= */
.footer {
    background-color: var(--dark-color);
    color: #a0aec0;
    padding: 8rem 0 0;
}
body.dark-mode .footer { background-color: #0A1622; }
.footer .logo img { max-height: 40px; margin-bottom: 1.5rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr)); gap: 5rem; margin-bottom: 5rem; }
.footer-col h3 { font-size: 1.8rem; margin-bottom: 2rem; color: #fff; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.footer-col p { color: #a0aec0; margin-bottom: 2rem; }
.footer-col ul li { margin-bottom: 1.5rem; }
.footer-col ul li a { color: #a0aec0; transition: color 0.3s ease, padding-left 0.3s ease; }
.footer-col ul li a:hover { color: #fff; padding-left: 0.5rem; }
.footer-col ul li i { margin-right: 1rem; width: 2rem; text-align: center; color: #a0aec0; }
.footer-bottom { padding: 2rem 0; border-top: 1px solid rgba(255, 255, 255, 0.1); text-align: center; }
.footer-bottom p { color: #a0aec0; font-size: 1.4rem; margin-bottom: 0; }


/* ======================================= */
/* ELEMENTOS FLUTUANTES E DE UI
/* ======================================= */
.progress-container { position: fixed; top: 0; left: 0; width: 100%; height: 0.4rem; background-color: transparent; z-index: 1001; }
.progress-bar { height: 100%; background-color: var(--primary-color); width: 0%; transition: width 0.1s linear; }

.back-to-top { position: fixed; bottom: 3rem; right: 3rem; width: 5rem; height: 5rem; display: flex; align-items: center; justify-content: center; background-color: var(--primary-color); color: #fff; border: none; border-radius: 50%; font-size: 1.8rem; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(2rem); transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease; z-index: 999; box-shadow: var(--shadow-lg); }
.back-to-top.active { opacity: 1; visibility: visible; transform: translateY(0); }

.mobile-call-btn {
    display: none; /* Escondido por padrão */
    position: fixed;
    bottom: 10rem;
    right: 3rem;
    width: 5rem;
    height: 5rem;
    background-color: var(--success-color);
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0, 168, 89, 0.4);
    z-index: 998;
    animation: pulse 2s infinite;
}

/* ======================================= */
/* MODAIS
/* ======================================= */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(13, 27, 42, 0.85); display: flex; align-items: center; justify-content: center; z-index: 2000; opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0s 0.4s; padding: 2rem; }
.modal-overlay.active { opacity: 1; visibility: visible; transition: opacity 0.4s ease; }
.modal-content { background: var(--light-color); padding: 3rem; border-radius: 1rem; box-shadow: var(--shadow-lg); max-width: 60rem; width: 100%; position: relative; text-align: left; }

.modal-overlay.active .modal-content { animation: modal-content-animation-in 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }
@keyframes modal-content-animation-in {
    from { opacity: 0; transform: translateY(5rem) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close-btn { position: absolute; top: 1rem; right: 1.5rem; font-size: 3rem; line-height: 1; font-weight: 300; background: transparent; border: none; cursor: pointer; color: var(--text-light); transition: color 0.3s ease, transform 0.3s ease; }
.modal-close-btn:hover { color: var(--error-color); transform: rotate(90deg); }
.modal-content h3 { font-size: 2.6rem; color: var(--primary-color); margin-bottom: 1.5rem; }
.modal-content p { font-size: 1.6rem; line-height: 1.7; color: var(--text-color); margin-bottom: 0; }

/* Modal da Galeria */
.modal-gallery-content { max-width: 100rem; width: 95%; padding: 3rem; }
#modalGalleryTitle { font-size: 2.8rem; color: var(--primary-color); margin-bottom: 1rem; text-align: center; }
#modalGalleryDescription { font-size: 1.6rem; color: var(--text-light); text-align: center; margin-bottom: 3rem; max-width: 700px; margin-left: auto; margin-right: auto; }
#modalGalleryImages { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.5rem; max-height: 65vh; overflow-y: auto; padding: 1rem; scrollbar-width: thin; scrollbar-color: var(--primary-color) var(--gray-color); }
#modalGalleryImages::-webkit-scrollbar { width: 8px; }
#modalGalleryImages::-webkit-scrollbar-track { background: var(--gray-color); border-radius: 4px; }
#modalGalleryImages::-webkit-scrollbar-thumb { background-color: var(--primary-color); border-radius: 4px; }
.modal-gallery-images .gallery-image-container { overflow: hidden; border-radius: 0.8rem; }
.modal-gallery-images img { width: 100%; height: 200px; object-fit: cover; transition: all 0.3s ease; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }
.modal-gallery-images img:hover { transform: scale(1.1); }
.modal-contact-btn { display: block; margin: 3rem auto 0; max-width: 250px; text-align: center; }


/* ======================================= */
/* SEÇÃO FAQ (DÚVIDAS)
/* ======================================= */
.faq { background-color: var(--body-bg); }
.faq-container { display: grid; grid-template-columns: 1fr 1.2fr; align-items: center; gap: 6rem; }
.faq-image-wrapper img { border-radius: 1.5rem; box-shadow: var(--shadow-lg); width: 100%; height: 100%; object-fit: cover; }
.faq-accordion { width: 100%; }
.faq-item { border-bottom: 1px solid var(--border-color); padding: 1.5rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-question { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 1rem 0; background: none; border: none; text-align: left; font-family: inherit; font-size: 1.8rem; font-weight: 600; color: var(--dark-color); cursor: pointer; transition: color 0.3s ease; }
.faq-question:hover { color: var(--primary-color); }
.faq-question i { font-size: 1.6rem; color: var(--primary-color); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); flex-shrink: 0; margin-left: 1.5rem; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), padding 0.5s ease; }
.faq-answer p { padding-top: 1.5rem; color: var(--text-light); font-size: 1.6rem; line-height: 1.7; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-item.active .faq-answer { padding-bottom: 1rem; max-height: 300px; /* Aumenta a altura máxima */}


/* ======================================= */
/* EFEITOS E ANIMAÇÕES ESPECIAIS
/* ======================================= */
.hero-swiper { width: 100%; max-width: 600px; margin: 0 auto; border-radius: 1rem; overflow: hidden; aspect-ratio: 16 / 10; box-shadow: var(--shadow-xl); }
.swiper-slide { display: flex; justify-content: center; align-items: center; }
.swiper-slide img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.swiper-pagination-bullet { background-color: var(--primary-color); opacity: 0.7; }
.swiper-pagination-bullet-active { background-color: var(--primary-color); opacity: 1; transform: scale(1.2); }

.info-link { text-decoration: none; color: inherit; display: block; border-radius: 1rem; transition: background-color 0.3s ease; }
.info-link:hover { background-color: var(--primary-light); }
.info-item { transition: transform 0.3s ease; }
.info-link:hover .info-item { transform: scale(1.02); }

/* ======================================= */
/* ESTILOS PARA O RADAR DO CALOR
/* ======================================= */
#clima-local {
    background: linear-gradient(180deg, var(--body-bg) 0%, var(--primary-light) 100%);
}
body.dark-mode #clima-local {
    background: linear-gradient(180deg, #0A1622 0%, #0D1B2A 100%);
}
.clima-widget {
    max-width: 650px;
    margin: 0 auto;
    background-color: var(--light-color);
    padding: 3rem 4rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
    border-top: 5px solid; /* Borda superior que mudará de cor */
    transition: background 0.5s ease, border-color 0.5s ease;
}
.clima-widget.estado-quente {
    background: linear-gradient(135deg, #fff7f5, #ffe8e0);
    border-color: #ff6b6b;
}
.clima-widget.estado-ameno {
    background: linear-gradient(135deg, #f5fff5, #e0ffed);
    border-color: #4caf50;
}
.clima-widget.estado-frio {
    background: linear-gradient(135deg, #f5fcff, #e0f5ff);
    border-color: #3b82f6;
}
body.dark-mode .clima-widget.estado-quente {
    background: linear-gradient(135deg, #3a1e1e, #2b1f1f);
    border-color: #ff6b6b;
}
body.dark-mode .clima-widget.estado-ameno {
    background: linear-gradient(135deg, #1e3a1e, #1f2b1f);
    border-color: #4caf50;
}
body.dark-mode .clima-widget.estado-frio {
    background: linear-gradient(135deg, #1e2a3a, #1f232b);
    border-color: #3b82f6;
}
.clima-seletor {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}
.clima-seletor label {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text-light);
}
.clima-seletor #cidade-select {
    max-width: 300px;
    text-align: center;
    font-weight: 600;
    padding-right: 2rem;
    border-radius: .5rem;
    padding: 1rem;
}
.clima-resultado {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.clima-resultado.visivel {
    opacity: 1;
}
.status-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1;
}
.estado-quente .status-icon { color: #ff6b6b; }
.estado-ameno .status-icon { color: #4caf50; }
.estado-frio .status-icon { color: #3b82f6; }
.clima-dados {
    display: flex;
    align-items: center;
    justify-content: center;
}
.clima-dados h3 {
    font-size: 2.8rem;
    margin-bottom: 0;
    color: var(--dark-color);
}
.clima-dados .weather-icon {
    width: 50px;
    height: 50px;
    margin-left: 1rem;
}
.temperatura {
    font-size: 6.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--dark-color);
    margin: 1rem 0 0.5rem 0;
}
.estado-quente .temperatura { color: #ff6b6b; }
.estado-ameno .temperatura { color: #4caf50; }
.estado-frio .temperatura { color: #3b82f6; }
.sensacao-termica {
    font-size: 1.6rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}
.frase-clima {
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 3rem;
    min-height: 50px; 
    max-width: 90%;
}
.clima-resultado .loader {
    border: 5px solid var(--gray-color);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


/* ======================================= */
/* NOVA SEÇÃO DE GALERIA
/* ======================================= */
#gallery {
    background-color: var(--body-bg);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 1rem;
    aspect-ratio: 4 / 3;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: var(--shadow-lg);
}
.gallery-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-xl);
}
.gallery-item::before {
    content: '\f065'; /* Ícone 'expand' do Font Awesome */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 4rem;
    height: 4rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 2;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}
.gallery-item:hover::before {
    opacity: 1;
    transform: scale(1);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 4rem 2rem 2rem;
    background: linear-gradient(to top, rgba(0, 25, 51, 0.95) 0%, transparent 100%);
    color: #fff;
    text-align: left;
    transition: all 0.4s ease;
}
.gallery-overlay h3 {
    font-size: 2.2rem;
    color: #fff;
    margin: 0;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s ease;
}
.gallery-item:hover .gallery-overlay h3 {
    transform: translateY(0);
    opacity: 1;
}


/* ======================================= */
/* RESPONSIVIDADE GERAL
/* ======================================= */
@media (max-width: 992px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-content { order: 2; }
    .hero-image { order: 1; margin-bottom: 4rem; width: 100%; max-width: 500px; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .tab-content.active { grid-template-columns: 1fr; text-align: center; }
    .content-image { margin-bottom: 3rem; }
    .content-text ul { display: inline-block; text-align: left; }
    .faq-container { grid-template-columns: 1fr; gap: 4rem; }
    .faq-image-wrapper { order: 2; max-width: 500px; margin: 0 auto; }
    .faq-accordion { order: 1; }
    .contact-container { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .modal-gallery-content { padding: 3rem; }
    .modal-gallery-images { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    html { font-size: 58%; }
    .section { padding: 6rem 0; }
    .section-title { font-size: 3rem; }
    
    .navbar {
        position: fixed;
        top: 0; left: -100%;
        width: 100%; height: 100%; 
        background-color: var(--light-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 3rem 2rem;
        transition: left 0.4s ease;
        z-index: 999;
    }
    .navbar.active {
        left: 0;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        margin: 0;
        gap: 2rem;
    }
    .nav-link {
        padding: 1.5rem 0;
        display: block;
        border-bottom: 1px solid var(--border-color);
        color: var(--dark-color);
        font-size: 2.2rem;
        text-align: center;
    }
    .nav-link::after { display: none; }
    
    .mobile-menu-btn { display: block; z-index: 1001; }
    .mobile-menu-btn.active .fa-bars::before { content: "\f00d"; }

    .hero { padding: 12rem 0 6rem 0; }
    
    .contact-info .section-header { text-align: center; }
    .contact-info .section-header .section-title::after { left: 50%; transform: translateX(-50%); }
    .contact-info .section-description { margin-left: auto; margin-right: auto; text-align: center; }
    .contact-social { align-items: center; display: flex; flex-direction: column; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .footer-col ul { padding: 0; display: inline-block; text-align: left; }
    
    .mobile-call-btn { display: flex; }
    .gallery-grid { grid-template-columns: 1fr; }
    .modal-gallery-content { padding: 2rem; }
    .modal-gallery-images { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    html { font-size: 55%; }
    .section-title { font-size: 2.8rem; }
    
    .hero-title { font-size: 3.8rem; }
    .hero-buttons { flex-direction: column; gap: 1.5rem; align-items: center; }
    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
    }
    
    .features-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-buttons { flex-direction: column; }
    .tab-btn { padding: 1.5rem 1rem; border-bottom: 1px solid var(--border-color); }
    .tab-btn.active { border-bottom-color: var(--primary-color); }
    
    .modal-content { padding: 3rem 2rem; }
    
    .testimonial-card p { padding-left: 0; text-align: center; }
    .testimonial-card p::before { left: 50%; transform: translateX(-50%); }
    .testimonial-author { justify-content: center; }
    
    .clima-widget { padding: 2.5rem 2rem; }
    .frase-clima { font-size: 1.6rem; }
    .temperatura { font-size: 5.5rem; }
}

@media (max-width: 420px) {
    .container {
        padding: 0 1.5rem;
    }
    .contact-container {
        padding: 3rem 1.5rem;
    }
    .back-to-top {
        bottom: 2rem;
        right: 2rem;
        width: 4.5rem;
        height: 4.5rem;
    }
    .mobile-call-btn {
        bottom: 8rem;
        right: 2rem;
        width: 4.5rem;
        height: 4.5rem;
    }
}

/* ===== AJUSTES SOLICITADOS ===== */
.logo img {
    max-height: 75px; /* Aumenta logo */
}

.nav-link {
    font-size: 1.35rem; /* Letras menores */
    gap: 0.4rem; /* Espaço entre ícone e texto */
}

.header-actions {
    gap: 1rem;
    align-items: center;
}

.toggleWrapper {
    transform: scale(0.6);
    margin-left: 0.5rem;
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 10rem;
    }
    .hero-title {
        font-size: 2.6rem;
    }
    .hero-subtitle {
        font-size: 1.4rem;
        max-width: 90%;
        margin: 0 auto 2rem auto;
    }
    .hero-image img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
}

/* ===== AJUSTES REFINADOS ===== */

/* Subir logo e toggle na navbar */
.header .container {
    align-items: center !important;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    max-height: 75px;
    margin-top: -5px; /* sobe a logo */
}

.header-actions {
    display: flex;
    align-items: center;
    margin-top: -5px; /* sobe o botão de tema */
}

/* Centralização total hero mobile */
@media (max-width: 768px) {
    .hero {
        padding-top: 12rem;
        padding-bottom: 5rem;
    }
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-title {
        font-size: 2.4rem;
        line-height: 1.3;
    }
    .hero-subtitle {
        font-size: 1.4rem;
        max-width: 90%;
        margin: 0 auto 2rem auto;
    }
    .hero-image {
        display: flex;
        justify-content: center;
    }
    .hero-image img {
        width: 100%;
        max-width: 350px;
        height: auto;
        object-fit: contain;
    }
}


/* === AJUSTES PERSONALIZADOS (CENTRALIZAÇÃO HERO E LOGO) === */
.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
}

.hero-content {
    max-width: 800px;
    width: 100%;
}

.hero-title,
.hero-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    width: 100%;
}
.hero-image img {
    width: 100%;
    height: auto;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}
.logo img {
    max-height: 70px;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    .hero-image,
    .hero-content {
        max-width: 100%;
    }
}


/* === AJUSTES FINAIS HERO - DESKTOP LADO A LADO / MOBILE COLUNA === */

/* Reduz espaço no topo da hero */
.hero {
    padding-top: 10rem; /* antes era 16rem */
    padding-bottom: 8rem; /* levemente reduzido */
}

/* Desktop: lado a lado */
@media (min-width: 1025px) {
    .hero .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 5rem;
        text-align: left;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-title, .hero-subtitle {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }
    .hero-buttons {
        justify-content: flex-start;
    }
    .hero-image {
        max-width: 100%;
    }
}

/* Mobile: coluna (já estava bom, só garantir) */
@media (max-width: 1024px) {
    .hero .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 3rem;
    }
    .hero-title, .hero-subtitle {
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
}
