/* RESET E BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* HEADER E MENU */
header {
    background: linear-gradient(
        135deg,
        #00a8a8 0%,
        #008b8b 25%,
        #00a8a8 50%,
        #008b8b 75%,
        #00a8a8 100%
    );
    background-size: 400% 400%;
    animation: gradientFlow 15s ease infinite;
    color: rgb(255, 255, 255);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    z-index: 100;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.right-side {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.reviews {
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
}

.contact-btn {
    background: #fad02c;
    color: #333;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.4s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.contact-btn:hover {
    background: #e6bf00;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(250, 208, 44, 0.3);
}

.contact-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(0, 0) translate(-50%);
    transform-origin: 50% 50%;
}

.contact-btn:hover::after {
    animation: ripple 1s ease-out;
}

/* =========== HAMBURGUER E MENU MOBILE =========== */

/* CHECKBOX ESCONDIDO */
.menu-toggle {
    display: none;
}

/* HAMBURGUER - Escondido por padrão */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1002;
    position: relative;
    background: none;
    border: none;
    order: 1;
    margin-left: auto;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 1;
    visibility: visible;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: background-color 0.3s ease;
    border-radius: 2px;
    display: block;
}

/* HAMBURGUER SOME QUANDO MENU ABRE */
#menu-toggle:checked + .hamburger {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* MENU DE NAVEGAÇÃO - Escondido por padrão */
nav {
    display: none;
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: #00a8a8;
    flex-direction: column;
    padding: 4rem 2rem 2rem;
    gap: 0;
    z-index: 999;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow-y: auto;
}

/* Quando o checkbox está marcado, mostra o menu */
#menu-toggle:checked ~ nav {
    display: flex !important;
    right: 0 !important;
}

/* BOTÃO FECHAR MENU (DENTRO DO NAV) */
.close-menu {
    display: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 168, 168, 0.95);
    border: 2px solid white;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Mostrar botão fechar quando menu aberto */
#menu-toggle:checked ~ nav .close-menu {
    display: flex !important;
}

.close-menu:hover {
    background: white;
    color: #00a8a8;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* Links do menu mobile */
nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1.2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: left;
    border-radius: 5px;
    margin-bottom: 0.5rem;
    width: 100%;
    display: block;
}

nav a:last-child {
    border-bottom: none;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
    border-bottom-color: transparent;
}

/* HERO SECTION */
#hero {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
    flex-direction: row-reverse;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-logo {
    flex: 0 0 auto;
}

.logo-image {
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

button {
    background: linear-gradient(135deg, #00a8a8 0%, #008b8b 100%);
    background-size: 200% 200%;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

button:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 168, 168, 0.3);
}

button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(0, 0) translate(-50%);
    transform-origin: 50% 50%;
}

button:hover::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* SECTIONS */
section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* SOBRE SECTION - NOVO ESTILO */
#sobre > h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    line-height: 1.3;
    padding: 0 1rem;
}

/* ESTILO PARA O TEXTO SOBRE COM BARRA LATERAL AMARELA */
.sobre-texto {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 5px solid #fad02c;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.sobre-texto:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.sobre-texto p {
    margin-bottom: 1.8rem;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    text-align: justify;
}

.sobre-texto p:last-child {
    margin-bottom: 0;
}

/* =========== FOTOS SIMPLES LADO A LADO =========== */
.fotos-simples {
    display: flex;
    gap: 2rem;
    margin: 4rem auto 0;
    max-width: 1200px;
    padding: 0 1rem;
    justify-content: center;
}

.foto-simples {
    flex: 1;
    max-width: 600px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.foto-simples:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.foto-simples img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.foto-simples:hover img {
    transform: scale(1.05);
}

/* Efeito de relevo no hover */
.foto-simples::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.foto-simples:hover::after {
    opacity: 1;
}

/* COMPROMISSO SECTION */
#compromisso {
    background-color: #545454;
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

#compromisso > *:not(.compromisso-container) {
    max-width: 100%;
}

.compromisso-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 4rem;
}

.compromisso-content {
    flex: 1;
    min-width: 300px;
}

.compromisso-imagem {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.compromisso-imagem img {
    width: 450px;
    height: 500px;
    object-fit: contain;
    object-position: center;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
}

.compromisso-imagem img:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.compromisso-imagem::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 30px solid #fad02c;
    transform: translateY(-50%);
    opacity: 0.8;
    animation: point 2s infinite alternate;
}

@keyframes point {
    0% { transform: translateY(-50%) translateX(0); }
    100% { transform: translateY(-50%) translateX(10px); }
}

#compromisso h2 {
    font-size: 3rem;
    text-align: left;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

#compromisso > .compromisso-container > .compromisso-content > p {
    font-size: 1.3rem;
    line-height: 1.7;
    text-align: left;
    margin: 0 auto 3rem;
    color: #f0f0f0;
    max-width: 600px;
}

#compromisso ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

#compromisso li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

#compromisso li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #fad02c, #00a8a8);
}

#compromisso li:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

#compromisso li::after {
    content: '✓';
    color: #fad02c;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    border: 2px solid rgba(250, 208, 44, 0.3);
}

#compromisso li:hover::after {
    background: rgba(250, 208, 44, 0.2);
    transform: scale(1.1);
    border-color: #fad02c;
}

#compromisso li span {
    font-size: 1.1rem;
    line-height: 1.5;
    flex: 1;
}

#compromisso::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, 
            rgba(84, 84, 84, 0.95) 0%, 
            rgba(66, 66, 66, 0.98) 50%,
            rgba(84, 84, 84, 0.95) 100%),
        radial-gradient(
            circle at 80% 20%,
            rgba(250, 208, 44, 0.1) 0%,
            transparent 40%
        ),
        radial-gradient(
            circle at 20% 80%,
            rgba(0, 168, 168, 0.1) 0%,
            transparent 40%
        );
    z-index: 1;
}

#compromisso::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.02) 10px,
            rgba(255, 255, 255, 0.02) 20px
        );
    pointer-events: none;
    z-index: 2;
    opacity: 0.3;
}

#compromisso .compromisso-container,
#compromisso .compromisso-content,
#compromisso .compromisso-imagem {
    position: relative;
    z-index: 3;
}

/* =========== SEÇÃO DE CONTATO CORRIGIDA =========== */
#contato {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.contacto-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.contacto-left {
    flex: 1;
    padding: 3rem;
    background: linear-gradient(135deg, #00a8a8 0%, #008b8b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contacto-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none" opacity="0.05"><path d="M0,0 L100,0 L100,100 Z" fill="white"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.contacto-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    font-weight: 700;
    line-height: 1.2;
}

.contacto-left > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-item i {
    font-size: 1.5rem;
    color: #fad02c;
    margin-top: 0.2rem;
    min-width: 30px;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
}

.info-item p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

.info-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #fad02c;
}

.contacto-right {
    flex: 1.2;
    padding: 3rem;
    background: white;
}

/* =========== FORMULÁRIO CORRIGIDO - NOVO LAYOUT =========== */
.contacto-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    width: 100%;
}

/* Container para cada linha de campos */
.form-row {
    display: flex;
    gap: 1.5rem;
    width: 100%;
}

/* Campos em linha (nome + email, telefone + assunto) */
.form-group.half {
    flex: 1;
    min-width: 0; /* Importante para responsividade */
}

/* Campos de largura total */
.form-group.full {
    width: 100%;
}

/* Inputs e textarea com altura consistente */
.contacto-form input:not([type="submit"]),
.contacto-form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    color: #333;
    transition: all 0.3s ease;
    background: #f8f9fa;
    box-sizing: border-box;
    line-height: 1.5;
    height: 56px; /* Altura fixa para inputs */
}

.contacto-form textarea {
    height: 150px;
    min-height: 150px;
    max-height: 300px;
    resize: vertical;
    line-height: 1.5;
    padding-top: 1rem;
}

.contacto-form input:focus,
.contacto-form textarea:focus {
    outline: none;
    border-color: #00a8a8;
    box-shadow: 0 0 0 3px rgba(0, 168, 168, 0.15);
    background: white;
    transform: translateY(-2px);
}

.contacto-form input::placeholder,
.contacto-form textarea::placeholder {
    color: #888;
    opacity: 1;
}

.submit-btn {
    background: linear-gradient(135deg, #00a8a8 0%, #008b8b 100%);
    background-size: 200% 200%;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    height: 56px; /* Mesma altura dos inputs */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 168, 168, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(0, 0) translate(-50%);
    transform-origin: 50% 50%;
}

.submit-btn:hover::after {
    animation: ripple 1s ease-out;
}

.form-notice {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    width: 100%;
}

.form-notice a {
    color: #00a8a8;
    text-decoration: none;
    font-weight: 500;
}

.form-notice a:hover {
    text-decoration: underline;
}

/* Background decorativo para a seção */
#contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 168, 168, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(250, 208, 44, 0.05) 0%, transparent 50%);
    z-index: 0;
}

/* =========== ANIMAÇÕES DO FORMULÁRIO =========== */
@keyframes formAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contacto-form {
    animation: formAppear 0.6s ease-out;
}

@keyframes infoItemAppear {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.info-item {
    animation: infoItemAppear 0.4s ease-out forwards;
    opacity: 0;
}

.info-item:nth-child(1) { animation-delay: 0.1s; }
.info-item:nth-child(2) { animation-delay: 0.2s; }
.info-item:nth-child(3) { animation-delay: 0.3s; }

/* =========== ESTILOS DE VALIDAÇÃO =========== */
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #ff4757;
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #2ed573;
}

/* =========== EFEITO DE CARREGAMENTO =========== */
.submit-btn.loading {
    position: relative;
    color: transparent;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* =========== MENSAGEM DE SUCESSO/ERRO =========== */
.form-message {
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-align: center;
    animation: slideDown 0.3s ease-out;
    border-left: 4px solid;
}

.form-message.success {
    background: #f0fff4;
    color: #2f855a;
    border-color: #48bb78;
}

.form-message.error {
    background: #fff5f5;
    color: #c53030;
    border-color: #fc8181;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========== CARROSSEL DE DEPOIMENTOS =========== */
#testimonials {
    background-color: #f8f9fa;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.carrossel-container {
    position: relative;
    max-width: 1200px;
    margin: 3rem auto 2rem;
    padding: 0 4rem;
}

.carrossel-wrapper {
    overflow: hidden;
    position: relative;
    border-radius: 15px;
}

.carrossel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    gap: 2rem;
}

.testimonial {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0.7;
    transform: scale(0.95);
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.testimonial:hover::before {
    opacity: 1;
    left: 100%;
}

.testimonial.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial.active:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    padding: 2rem;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 5rem;
    color: #00a8a8;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00a8a8;
    padding: 2px;
}

.testimonial-author div {
    text-align: left;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.stars {
    color: #ffc107;
    font-size: 1.1rem;
    margin: 0.3rem 0;
    letter-spacing: 2px;
}

.testimonial-author small {
    color: #777;
    font-size: 0.9rem;
}

.carrossel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
    color: #00a8a8;
    font-size: 1.2rem;
}

.carrossel-btn:hover {
    background: #00a8a8;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 168, 168, 0.3);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.carrossel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #00a8a8;
    transform: scale(1.2);
}

.indicator:hover {
    background: #00a8a8;
    transform: scale(1.1);
}

/* Animações para o carrossel */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial {
    animation: fadeIn 0.6s ease-out;
}

/* PROCESSO */
#processo {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #00a8a8 0%, #004f4f 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

#processo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            rgba(255,255,255,0.05) 0px,
            rgba(255,255,255,0.05) 2px,
            transparent 2px,
            transparent 10px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(255,255,255,0.03) 0px,
            rgba(255,255,255,0.03) 1px,
            transparent 1px,
            transparent 8px
        );
    pointer-events: none;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto 0;
    text-align: center;
}

.process-step {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.process-step:hover::before {
    opacity: 1;
    left: 100%;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: white;
    color: #00a8a8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* FAQ */
/* =========== FAQ ATUALIZADA =========== */
#faq {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

#faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 168, 168, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(250, 208, 44, 0.05) 0%, transparent 50%);
    z-index: 0;
}

#faq h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: #2c3e50;
    font-weight: 700;
    position: relative;
    z-index: 1;
    padding-bottom: 1.5rem;
}

#faq h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #00a8a8, #fad02c);
    border-radius: 2px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1.2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #00a8a8;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-left-color: #fad02c;
}

.faq-question {
    width: 100%;
    padding: 1.8rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #2c3e50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #00a8a8, #fad02c);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #00a8a8;
    padding-left: 2.5rem;
}

.faq-question:hover::before {
    opacity: 1;
}

.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    font-weight: 300;
    color: #00a8a8;
    transition: all 0.3s ease;
    background: rgba(0, 168, 168, 0.1);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-question::after {
    content: '−';
    background: #00a8a8;
    color: white;
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    color: #00a8a8;
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.645, 0.045, 0.355, 1), 
                padding 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 2rem 2rem 2rem;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    border-top: 1px solid #f0f0f0;
    padding-top: 1.5rem;
    background: white;
}

.faq-answer-content p {
    margin: 0;
    padding: 0.8rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.faq-answer-content p::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00a8a8;
    font-weight: bold;
}

/* Efeito de acordeão suave */
.faq-item {
    animation: fadeInUpSoft 0.5s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUpSoft {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FOOTER */
footer {
    background-color: #343a40;
    color: white;
    padding: 3rem 2rem 2rem;
    text-align: left;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-section {
    flex: 1 1 250px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #fad02c;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fad02c;
    text-decoration: underline;
}

/* =========== ÍCONES SOCIAIS CORRIGIDOS =========== */
.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.social-icons a:hover {
    background: #00a8a8;
    transform: translateY(-5px) scale(1.1);
    border-color: #00a8a8;
    box-shadow: 0 10px 20px rgba(0, 168, 168, 0.3);
}

.social-icons a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icons a:hover::after {
    opacity: 1;
}

.footer-links {
    border-top: 1px solid #555;
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    max-width: 1200px;
    margin: 2rem auto 1.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fad02c;
    text-decoration: underline;
}

.copyright {
    font-size: 0.9rem;
    border-top: 1px solid #555;
    padding-top: 1.5rem;
    text-align: center;
    color: #bbb;
    max-width: 1200px;
    margin: 0 auto;
}

.copyright a {
    color: #fad02c;
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite, subtlePulse 3s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes subtlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* ANIMAÇÕES */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* =========== LAYOUT WIDESCREEN =========== */

/* Container principal para telas muito grandes */
@media (min-width: 1400px) {
    .top-bar, 
    section,
    .footer-content,
    .copyright,
    .footer-links {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Hero section mais expansiva */
    .hero-content {
        max-width: 1300px;
        padding: 0 4rem;
    }
    
    .hero-text h2 {
        font-size: 3rem;
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 1.3rem;
        max-width: 600px;
    }
    
    /* Fotos simples maiores */
    .fotos-simples {
        max-width: 1300px;
    }
    
    .foto-simples {
        height: 450px; /* Um pouco maior em telas grandes */
    }
    
    /* Texto sobre maior */
    .sobre-texto {
        max-width: 1000px;
        padding: 3rem;
    }
    
    .sobre-texto p {
        font-size: 1.2rem;
        line-height: 1.8;
    }
    
    /* Formulário de contato mais espaçoso */
    .contacto-container {
        max-width: 1300px;
        padding: 4rem;
    }
    
    .contacto-left, 
    .contacto-right {
        padding: 4rem;
    }
    
    /* Processo em 4 colunas fixas */
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1300px;
        gap: 3rem;
    }
    
    .process-step {
        padding: 3rem 2rem;
    }
    
    /* Carrossel maior */
    .carrossel-container {
        max-width: 1300px;
    }
    
    .testimonial {
        padding: 3rem;
    }
    
    .testimonial-content p {
        font-size: 1.3rem;
        line-height: 1.8;
        max-width: 900px;
        margin: 0 auto 2rem;
    }

    /* Ícones sociais maiores em telas grandes */
    .social-icons {
        gap: 1.8rem;
    }
    
    .social-icons a {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* Ajuste para telas entre 1200px e 1400px */
@media (min-width: 1200px) and (max-width: 1399px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1100px;
    }
}

/* =========== MEDIA QUERIES PARA MOBILE =========== */

/* Ajustes para telas menores que 768px (MOBILE) */
@media (max-width: 768px) {
    /* Ajusta header para mobile */
    .top-bar {
        padding: 1rem;
    }
    
    /* Esconde reviews e botão contato no mobile */
    .reviews, .contact-btn {
        display: none;
    }
    
    /* MOSTRA HAMBURGUER NO MOBILE */
    .hamburger {
        display: flex;
    }
    
    /* Ajustes gerais para mobile */
    #hero {
        padding: 3rem 1rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .logo-image {
        max-width: 150px;
    }
    
    section {
        padding: 3rem 1rem;
    }
    
    /* Texto sobre mobile */
    #sobre > h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .sobre-texto {
        padding: 1.5rem;
        margin: 2rem auto;
    }
    
    .sobre-texto p {
        font-size: 1rem;
        line-height: 1.6;
        text-align: left;
    }
    
    /* Fotos simples mobile */
    .fotos-simples {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin: 3rem auto 0;
        padding: 0;
    }
    
    .foto-simples {
        width: 100%;
        max-width: 500px;
        height: 300px;
    }
    
    /* Compromisso mobile */
    .compromisso-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .compromisso-content {
        width: 100%;
    }
    
    #compromisso h2 {
        text-align: center;
        font-size: 2.2rem;
    }
    
    #compromisso > .compromisso-container > .compromisso-content > p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        font-size: 1.1rem;
    }
    
    .compromisso-imagem {
        justify-content: center;
        width: 100%;
    }
    
    .compromisso-imagem img {
        width: 300px;
        height: 350px;
        max-width: 100%;
    }
    
    .compromisso-imagem::after {
        display: none;
    }
    
    #compromisso li {
        padding: 1.2rem;
        flex-direction: row;
        text-align: left;
    }
    
    #compromisso li::after {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    /* Formulário mobile */
    .contacto-container {
        flex-direction: column;
        gap: 0;
    }
    
    .contacto-left,
    .contacto-right {
        padding: 2.5rem;
    }
    
    .contacto-left {
        border-radius: 15px 15px 0 0;
    }
    
    .contacto-right {
        border-radius: 0 0 15px 15px;
    }
    
    /* Ajustes específicos para formulário em mobile */
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-group.half {
        width: 100%;
    }
    
    .contacto-form input:not([type="submit"]) {
        height: 50px;
        padding: 0.9rem 1rem;
    }
    
    .contacto-form textarea {
        height: 120px;
        min-height: 120px;
    }
    
    /* Testimonials mobile - carrossel */
    .carrossel-container {
        padding: 0 2.5rem;
    }
    
    .carrossel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
    
    .carrossel-indicators {
        margin-top: 2rem;
    }
    
    /* Processo mobile */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* FAQ mobile */
    .faq-question {
        padding: 1.2rem;
        font-size: 1rem;
    }
    
    /* Footer mobile */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-section {
        flex: 1 1 100%;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* WhatsApp float mobile */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

/* =========== NAV DESKTOP - ESCONDIDO =========== */
@media (min-width: 769px) {
    /* Menu não aparece no desktop */
    nav {
        display: none !important;
    }
    
    .hamburger {
        display: none !important;
    }
    
    .close-menu {
        display: none !important;
    }
}

/* Ajustes para telas muito pequenas (até 480px) */
@media (max-width: 480px) {
    .logo {
        font-size: 1.3rem;
    }
    
    #hero h2 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    #sobre > h2 {
        font-size: 1.6rem;
    }
    
    .sobre-texto {
        padding: 1.2rem;
    }
    
    /* Fotos simples muito pequenas */
    .foto-simples {
        height: 250px;
    }
    
    .fotos-simples {
        gap: 1rem;
    }
    
    #compromisso h2 {
        font-size: 1.9rem;
    }
    
    #compromisso li {
        padding: 1rem;
        gap: 1rem;
    }
    
    #compromisso li::after {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    #compromisso li span {
        font-size: 1rem;
    }
    
    .compromisso-imagem img {
        width: 250px;
        height: 300px;
    }
    
    nav {
        width: 250px;
    }
    
    .close-menu {
        width: 35px;
        height: 35px;
        font-size: 1.7rem;
        top: 0.8rem;
        right: 0.8rem;
    }
    
    /* Contacto muito pequeno */
    .contacto-left,
    .contacto-right {
        padding: 1.5rem;
    }
    
    .contacto-left h2 {
        font-size: 1.8rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .info-item i {
        margin: 0 auto;
    }
    
    /* Carrossel mobile muito pequeno */
    .carrossel-container {
        padding: 0 1.5rem;
    }
    
    .carrossel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .testimonial-content::before {
        font-size: 3.5rem;
        top: -5px;
        left: -5px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .testimonial-author div {
        text-align: center;
    }
    
    .carrossel-indicators {
        gap: 0.8rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* =========== MELHORIAS DE ACESSIBILIDADE VISUAL =========== */
button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 3px solid rgba(0, 168, 168, 0.5);
    outline-offset: 2px;
}

/* Estilos para botão de sucesso */
.submit-btn.success {
    background: linear-gradient(135deg, #2ed573 0%, #1dd1a1 100%) !important;
    animation: pulseSuccess 0.5s ease;
}

@keyframes pulseSuccess {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}