/* ======== RESET GLOBAL E VARIÁVEIS ======== */
:root {
    --purple: #9305ba;
    --purple-light: #9410bc;
    --purple-dark: #991eb8;
    --green: #1cd022;
    --green-light: #20c928;
    --green-dark: #0e8414;
    --white: #ffffff;
    --light-gray: #ffffff;
    --medium-gray: #e0e0e0;
    --dark-text: #333;
    --light-text: #555;
    --font-family: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ======== HEADER FLUTUANTE COM BORDAS ARREDONDADAS ======== */
header {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 30px);
    max-width: 1200px;
    height: 90px;
    z-index: 1000;
    border-radius: 20px;
    
    /* visual */
    background: rgba(172, 246, 210, 0.41);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    top: 15px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(171, 5, 186, 0.1);
}

header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}

/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--purple);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 70px;
    height: auto;
}

.logo-text {
    font-family: "Playfair Display SC", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
    color: var(--white);
    transition: color 0.4s ease;
    letter-spacing: -0.5px;
}

header.scrolled .logo-text {
    color: var(--purple);
}

/* ===== MENU ===== */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

header.scrolled .nav-menu a {
    color: var(--dark-text);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--purple), var(--green));
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--purple);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* ===== BOTÃO ===== */
.btn-contato-nav {
    background: linear-gradient(135deg, var(--purple), var(--green));
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(106, 27, 154, 0.3);
}

.btn-contato-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(106, 27, 154, 0.4);
}

.btn-contato-nav::after {
    display: none;
}

/* Menu Hamburger */
.menu-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--purple);
    transition: transform 0.3s ease;
}

.menu-hamburger:hover {
    transform: rotate(90deg);
}

/* ======== HERO SECTION ======== */
.hero {
    background-image: url(img/hero.png);
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 180px 0 100px 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(106, 27, 154, 0.1), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(76, 175, 80, 0.1), transparent 50%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
    line-height: 1.2;
    margin-bottom: 20px;
    animation: slideInLeft 0.8s ease;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
    opacity: 0.95;
    animation: slideInLeft 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: slideInLeft 0.8s ease 0.4s both;
}

.hero-image {
    animation: slideInRight 0.8s ease;
}

.hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
}

/* ======== BOTÕES CTA ======== */
.cta-button {
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--font-family);
}

.cta-button.primary {
    background: linear-gradient(135deg, #9305ba, var(--green-light));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-button.secondary:hover {
    background: var(--white);
    color: var(--purple);
    transform: translateY(-3px);
}

.cta-button.whatsapp {
    background: linear-gradient(135deg, #25D366, #20BA5A);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.cta-button.whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* ======== ESTATÍSTICAS ======== */
.statistics {
    background: linear-gradient(135deg, var(--purple), var(--green));
    padding: 60px 0;
    color: var(--white);
}

.statistics .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-card h3 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 800;
}

.stat-card p {
    font-size: 16px;
    opacity: 0.9;
}

/* ======== SEÇÃO DE SERVIÇOS ======== */
.services {
    padding: 100px 0;
    background: var(--light-gray);
}

.services h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--purple);
    animation: fadeInUp 0.8s ease;
}

.section-subtitle {
    text-align: center;
    color: var(--light-text);
    font-size: 18px;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
    animation: fadeInUp 0.8s ease;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
    border-top-color: var(--purple);
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
    border-top-color: var(--green);
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
    border-top-color: var(--purple);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--purple), var(--green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--dark-text);
}

.service-card p {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 15px;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--light-text);
    font-size: 14px;
}

.service-card li::before {
    content: '✓';
    color: var(--green);
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 16px;
}

/* ======== SEÇÃO SOBRE ======== */
.why-us {
    padding: 100px 0;
    background: var(--white);
}

.why-us .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    animation: slideInLeft 0.8s ease;
}

.why-us-content h2 {
    font-size: 42px;
    color: var(--purple);
    margin-bottom: 20px;
    animation: slideInRight 0.8s ease;
}

.why-us-content p {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 30px;
    animation: slideInRight 0.8s ease 0.1s both;
}

.why-us-content ul {
    list-style: none;
}

.why-us-content li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 15px;
    animation: slideInRight 0.8s ease 0.2s both;
}

.why-us-content li i {
    color: var(--green);
    margin-right: 15px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.why-us-content strong {
    color: var(--dark-text);
}

/* ======== DEPOIMENTOS ======== */
.testimonials {
    padding: 100px 0;
    background: var(--light-gray);
}

.testimonials h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--purple);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--green);
    animation: fadeInUp 0.8s ease;
}

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

.stars {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: var(--light-text);
    font-size: 15px;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--dark-text);
    font-size: 16px;
}

.testimonial-author span {
    color: var(--light-text);
    font-size: 13px;
    margin-top: 5px;
}

/* ======== EQUIPE ======== */
.team {
    padding: 100px 0;
    background: var(--white);
}

.team h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--purple);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.team-card {
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-card:hover img {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-card h3 {
    font-size: 22px;
    color: var(--dark-text);
    margin-bottom: 5px;
}

.team-card p {
    color: var(--purple);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-card .specialty {
    color: var(--light-text);
    font-size: 14px;
    display: block;
}

/* ======== FAQ ======== */
.faq {
    padding: 100px 0;
    background: var(--light-gray);
}

.faq h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--purple);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(106, 27, 154, 0.05), rgba(76, 175, 80, 0.05));
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(106, 27, 154, 0.1), rgba(76, 175, 80, 0.1));
}

.faq-question h4 {
    font-size: 16px;
    color: var(--dark-text);
    margin: 0;
    flex: 1;
}

.faq-icon {
    font-size: 24px;
    color: var(--purple);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 25px 25px;
    color: var(--light-text);
    font-size: 15px;
    line-height: 1.8;
}

/* ======== SEÇÃO DE CONTATO ESTILIZADA ======== */
.section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(171, 5, 186, 0.05), rgba(76, 175, 80, 0.05));
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease;
}

.section-title h2 {
    font-size: 42px;
    color: var(--purple);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title p {
    font-size: 18px;
    color: var(--light-text);
    font-weight: 500;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
    animation: fadeInUp 0.8s ease;
}

.contact-item:nth-child(1) {
    border-top-color: var(--purple);
    animation-delay: 0.1s;
}

.contact-item:nth-child(2) {
    border-top-color: var(--green);
    animation-delay: 0.2s;
}

.contact-item:nth-child(3) {
    border-top-color: var(--purple);
    animation-delay: 0.3s;
}

.contact-item:nth-child(4) {
    border-top-color: var(--green);
    animation-delay: 0.4s;
}

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

.contact-icon {
    font-size: 40px;
    background: linear-gradient(135deg, var(--purple), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.contact-text h4 {
    font-size: 18px;
    color: var(--dark-text);
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-text p {
    font-size: 15px;
    color: var(--light-text);
    line-height: 1.6;
}

.map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease 0.5s both;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ======== FORMULÁRIO ======== */
.contact-form {
    padding: 100px 0;
    background: var(--light-gray);
}

.contact-form h2 {
    text-align: center;
    font-size: 42px;
    color: var(--purple);
    margin-bottom: 15px;
}

#form-contato {
    max-width: 800px;
    margin: 60px auto 0;
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--dark-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(106, 27, 154, 0.1);
    background: rgba(106, 27, 154, 0.02);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #f44336;
    background: rgba(244, 67, 54, 0.05);
}

.form-error {
    color: #f44336;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.form-error.show {
    display: block;
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--light-text);
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--green);
}

.checkbox-label:hover {
    color: var(--purple);
}

.form-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    grid-column: 1 / -1;
}

.form-buttons .cta-button {
    flex: 1;
    justify-content: center;
}

#form-mensagem {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    padding: 15px;
    border-radius: 8px;
    display: none;
}

#form-mensagem.success {
    background: rgba(76, 175, 80, 0.1);
    color: var(--green-dark);
    border-left: 4px solid var(--green);
    display: block;
}

#form-mensagem.error {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border-left: 4px solid #f44336;
    display: block;
}

/* ======== FOOTER ======== */
footer {
    background: linear-gradient(135deg, var(--purple-dark), var(--purple));
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 8px;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--green-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* ======== ANIMAÇÕES ======== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======== RESPONSIVIDADE ======== */
@media (max-width: 1024px) {
    header {
        width: calc(100% - 20px);
        max-width: calc(100% - 20px);
    }

    .hero .container,
    .why-us .container {
        grid-template-columns: 1fr;
    }

    .hero {
        background-image: url(img/hero2.png);
    }

    .statistics .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-grid,
    .testimonials-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        top: 10px;
        width: calc(100% - 20px);
        height: 70px;
        border-radius: 15px;
    }

    header .container {
        padding: 0 20px;
    }

    .logo-icon {
        width: 50px;
    }

    .logo-text {
        font-size: 16px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
        border-radius: 0 0 15px 15px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--medium-gray);
    }

    .nav-menu li a {
        display: block;
        padding: 15px 20px;
        color: #333;
    }

    .nav-menu a::after {
        display: none;
    }

    .menu-hamburger {
        display: block;
    }

    .hero {
        background-image: url(img/hero2.png);
        padding: 140px 0 80px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero .container,
    .why-us .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .statistics .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-card h3 {
        font-size: 36px;
    }

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

    .services h2,
    .team h2,
    .faq h2,
    .contact-form h2,
    .why-us-content h2,
    .section-title h2 {
        font-size: 32px;
    }

    .section-title p {
        font-size: 16px;
    }

    #form-contato {
        padding: 30px 20px;
    }

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

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .form-buttons {
        flex-direction: column;
    }

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

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

    .map-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    header {
        top: 8px;
        width: calc(100% - 16px);
        height: 60px;
        border-radius: 12px;
    }

    header .container {
        padding: 0 15px;
        height: 60px;
    }

    .logo-icon {
        width: 40px;
    }

    .logo-text {
        font-size: 14px;
    }

    .nav-menu {
        top: 60px;
    }

    .hero {
        padding: 120px 0 400px;
        background-image: url(img/hero2.png);
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .statistics .container {
        grid-template-columns: 1fr;
    }

    .services,
    .why-us,
    .testimonials,
    .team,
    .faq,
    .contact-form,
    .section {
        padding: 60px 0;
    }

    .services h2,
    .team h2,
    .faq h2,
    .contact-form h2,
    .why-us-content h2,
    .section-title h2 {
        font-size: 26px;
    }

    .section-title p {
        font-size: 14px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .contact-item {
        padding: 30px 20px;
    }

    .contact-icon {
        font-size: 32px;
    }

    .map-container {
        height: 250px;
    }

    .contact-info {
        gap: 20px;
        margin-bottom: 40px;
    }
}

/* WhatsApp Flutuante */
.whatsapp-float {
    text-decoration: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: rgb(255, 255, 255);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}
