/* 
* Variáveis de cores principais
* CBD4C2 - Verde acinzentado claro
* DBEBC0 - Verde limão claro
* C3B299 - Bege
* 815355 - Bordô
* 523249 - Roxo escuro
*/

:root {
    /* Nova paleta de cores */
    --color-yellow: #F4D35E;
    --color-orange: #EE964B;
    --color-red: #F95738;
    --color-text: #222222;
    
    /* Fontes */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Orbitron', sans-serif;
    
    /* Outros */
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-yellow);
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

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

.highlight {
    color: var(--color-burgundy);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    bottom: 5px;
    left: 0;
    background-color: var(--color-lime-green);
    z-index: -1;
    opacity: 0.6;
}

/* Estilos dos botões */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--color-burgundy);
    color: var(--color-white);
    border: 2px solid var(--color-burgundy);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-burgundy);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-deep-purple);
    border: 2px solid var(--color-deep-purple);
}

.btn-secondary:hover {
    background-color: var(--color-deep-purple);
    color: var(--color-white);
}

/* Estilos do cabeçalho */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: var(--transition);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.logo h1 {
    margin: 0;
    font-size: 1.5rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1000;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #000;
    border-radius: 3px;
    margin: 2px 0;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        flex-direction: row;
    }
    
    .logo {
        margin-bottom: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: var(--color-light-beige);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
        padding-top: 70px;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
    }
    
    .nav ul li {
        margin: 15px 0;
        width: 100%;
    }
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin: 0;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
    width: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.footer-logo h1 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--color-deep-purple);
}

.nav ul {
    display: flex;
    gap: 30px;
}

.nav a {
    font-weight: 500;
    position: relative;
}

.nav a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--color-burgundy);
    transition: var(--transition);
}

.nav a:not(.btn-primary):hover::after {
    width: 100%;
}

/* Estilos da seção hero */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--color-light-green) 0%, var(--color-lime-green) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--color-deep-purple);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--color-dark-gray);
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    position: relative;
    height: 400px;
}

/* Elementos tecnológicos animados */
.tech-element {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: white;
    font-size: 2rem;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    opacity: 0.9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-element:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

/* Configurações específicas dos elementos tech */
.cpu {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    top: 20%;
    left: 10%;
    animation-name: float-cpu;
    font-size: 5rem; /* Aumentando o tamanho do ícone */
}

.ram {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    top: 50%;
    left: 25%;
    animation-name: float-ram;
    font-size: 4rem; /* Aumentando o tamanho do ícone */
}

.hdd {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    top: 30%;
    right: 15%;
    animation-name: float-hdd;
    font-size: 3.5rem; /* Aumentando o tamanho do ícone */
}

.code {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    bottom: 25%;
    right: 20%;
    animation-name: float-code;
    font-size: 3rem; /* Aumentando o tamanho do ícone */
}

.wifi {
    width: 70px; /* Aumentando a largura */
    height: 70px; /* Aumentando a altura */
    background: linear-gradient(135deg, #f39c12, #d35400);
    bottom: 35%;
    left: 15%;
    animation-name: float-wifi;
    font-size: 3rem; /* Aumentando o tamanho do ícone */
}


/* Animações para os elementos tecnológicos */
@keyframes float-cpu {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, 15px) rotate(5deg); }
    50% { transform: translate(0, 30px) rotate(0deg); }
    75% { transform: translate(-20px, 15px) rotate(-5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes float-ram {
    0% { transform: translate(0, 0) rotate(0deg); }
    30% { transform: translate(-25px, 10px) rotate(-3deg); }
    60% { transform: translate(15px, 20px) rotate(3deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes float-hdd {
    0% { transform: translate(0, 0) rotate(0deg); }
    20% { transform: translate(15px, -20px) rotate(5deg); }
    40% { transform: translate(30px, 0) rotate(10deg); }
    60% { transform: translate(15px, 20px) rotate(5deg); }
    80% { transform: translate(-15px, 10px) rotate(-5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes float-code {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -15px) scale(1.1); }
}

@keyframes float-wifi {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(25px, -10px) scale(1.05) rotate(10deg); }
    66% { transform: translate(-15px, 20px) scale(0.95) rotate(-10deg); }
}

@media (max-width: 768px) {
    .hero-image {
        height: 300px;
    }
    
    .tech-element {
        font-size: 1.5rem;
    }
    
    .cpu, .ram, .hdd, .code, .wifi {
        width: 70px;
        height: 70px;
    }
}

/* Estilos da seção de serviços */
.services {
    padding: 100px 0;
    background-color: var(--color-yellow);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--color-light-beige);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-light-green);
    border-radius: 50%;
}

.service-icon img {
    width: 80px;
    height: 80px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-family: var(--font-secondary);
    color: var(--color-dark-blue);
}

/* Estilos da seção de benefícios */
.benefits {
    padding: 100px 0;
    background-color: var(--color-light-beige);
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--color-lime-green) 0%, transparent 70%);
    opacity: 0.6;
}

.benefits .container {
    position: relative;
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    background: var(--color-orange);
    color: white;
    border-radius: 15px;
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-number {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-burgundy);
    opacity: 0.1;
    position: absolute;
    top: 10px;
    right: 20px;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--color-deep-purple);
}

/* Estilos da seção CTA */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-deep-purple) 0%, var(--color-burgundy) 100%);
    color: var(--color-white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta .btn-primary {
    background-color: var(--color-white);
    color: var(--color-deep-purple);
    border-color: var(--color-white);
}

.cta .btn-primary:hover {
    background-color: transparent;
    color: var(--color-white);
}

/* Estilos da seção sobre */
.about {
    padding: 100px 0;
    background-color: var(--color-yellow);
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content {
    padding-right: 30px;
}

.about-content .section-title {
    text-align: left;
}

.about-content .section-title::after {
    left: 0;
    transform: none;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--color-orange);
    color: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-burgundy);
    margin-bottom: 10px;
}

.stat-label {
    font-weight: 500;
    color: var(--color-deep-purple);
}

/* Estilos para a seção de avaliações */
.reviews {
    padding: 100px 0;
    background-color: var(--color-light-beige);
    position: relative;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--color-yellow) 0%, transparent 70%);
    opacity: 0.4;
    z-index: 0;
}

.reviews .container {
    position: relative;
    z-index: 1;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.google-reviews {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.google-reviews-widget {
    width: 100%;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.google-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.review-header h3 {
    margin: 0;/* Elementos tecnológicos animados */
.hero-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

}/* Elementos tecnológicos animados */
.hero-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}


.google-stars {
    display: flex;
    align-items: center;
}

.star {
    color: #FBBC05;
    font-size: 20px;
    margin-right: 2px;
}

.rating {
    margin-left: 10px;
    font-weight: 600;
    color: #333;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.review-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.review-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.reviewer {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-info h4 {
    margin: 0;
    margin-bottom: 5px;
    color: var(--color-deep-purple);
}

.review-stars {
    color: #FBBC05;
    font-size: 16px;
    margin-bottom: 5px;
}

.review-date {
    font-size: 12px;
    color: #777;
}

.review-text {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

.reviews-cta {
    text-align: center;
    margin-top: 30px;
}

.reviews-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .reviews {
        padding: 70px 0;
    }
    
    .google-reviews {
        padding: 20px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .review-header h3 {
        margin-bottom: 10px;
    }
}

.reviews .container {
    position: relative;
    z-index: 1;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.google-reviews {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.google-reviews-widget {
    width: 100%;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.google-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.review-header h3 {
    margin: 0;
    margin-right: 20px;
    color: var(--color-deep-purple);
}

.google-stars {
    display: flex;
    align-items: center;
}

.star {
    color: #FBBC05;
    font-size: 20px;
    margin-right: 2px;
}

.rating {
    margin-left: 10px;
    font-weight: 600;
    color: #333;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.review-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.review-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.reviewer {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-info h4 {
    margin: 0;
    margin-bottom: 5px;
    color: var(--color-deep-purple);
}

.review-stars {
    color: #FBBC05;
    font-size: 16px;
    margin-bottom: 5px;
}

.review-date {
    font-size: 12px;
    color: #777;
}

.review-text {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

.reviews-cta {
    text-align: center;
    margin-top: 30px;
}

.reviews-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .reviews {
        padding: 70px 0;
    }
    
    .google-reviews {
        padding: 20px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .review-header h3 {
        margin-bottom: 10px;
    }
}

/* Estilos da seção de contato */
.contact {
    padding: 100px 0;
    background-color: var(--color-light-beige);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    padding-right: 0;
}

.google-map {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 450px;
}

.google-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 15px;
}

.contact-methods {
    margin-top: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-method .icon {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--color-burgundy);
}

.contact-method .info {
    font-weight: 500;
}

.contact-form {
    background: var(--color-yellow);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: white;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-burgundy);
    box-shadow: 0 0 0 3px rgba(129, 83, 85, 0.2);
}

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

@media (max-width: 768px) {
    .contact-wrapper {
        gap: 30px;
    }
    
    .google-map {
        margin-top: 30px;
    }
    
    .google-map iframe {
        height: 350px;
    }
}

/* Estilos do rodapé */
.footer {
    padding: 80px 0 30px;
    background-color: var(--color-deep-purple);
    color: var(--color-white);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    justify-content: center;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--color-burgundy);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a:hover {
    color: var(--color-lime-green);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--color-burgundy);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Menu Mobile */
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1000;
    margin-left: auto;
    position: relative;
    top: 0;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #000;
    border-radius: 3px;
    margin: 2px 0;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        flex-direction: row;
    }
    
    .menu-toggle {
        display: flex;
        align-items: center;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: var(--color-light-beige);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
        padding-top: 70px;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
    }
    
    .nav ul li {
        margin: 15px 0;
        width: 100%;
    }
    
    .nav ul li a {
        display: block;
        width: 100%;
    }
    
    .services-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .floating-element:nth-child(2),
    .floating-element:nth-child(3) {
        display: none;
    }
    
    .floating-element:nth-child(1) {
        width: 150px;
        height: 150px;
        top: 20px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        background: #F95738;
        opacity: 0.8;
    }
    
    .floating-element:nth-child(2) {
        display: block;
        width: 100px;
        height: 100px;
        top: 100px;
        right: auto;
        left: 30%;
        background: #EE964B;
        opacity: 0.6;
    }
    
    .floating-element:nth-child(3) {
        display: block;
        width: 80px;
        height: 80px;
        top: 80px;
        right: auto;
        left: 70%;
        background: #F4D35E;
        opacity: 0.7;
    }
    
    .hero-image {
        height: 200px;
        position: relative;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary, 
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .error-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 50px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .about .container {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        padding-right: 0;
    }
    
    .about-content .section-title,
    .about-content .section-title::after {
        text-align: center;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-info {
        padding-right: 0;
        text-align: center;
    }
    
    .contact-method {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: row;
    }
    
    .nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid,
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        gap: 30px;
    }
    
    .google-map {
        margin-top: 30px;
    }
    
    .google-map iframe {
        height: 350px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    
    .footer-links h4::after,
    .footer-social h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Estilo para o botão flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #ffffff;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 3px 3px 5px #888;
}

.whatsapp-float img {
    width: 40px;
    height: 40px;
}

@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 22px;
    }
    
    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }
}