/* Reset e estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(45deg, #5dade2 0%, #3498db 50%, #b8e6e6 100%);
    background-attachment: fixed;
}

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

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

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

/* Header */
header {
    background-color: rgba(52, 152, 219, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    padding: 15px 0;
    border-bottom: 1px solid #b8e6e6;
}

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

.logo img {
    height: 50px;
    transition: all 0.3s;
    filter: drop-shadow(0 0 10px rgba(52, 152, 219, 0.3));
}

.logo img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(52, 152, 219, 0.5));
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #3498db;
}

/* Seção Hero */
.hero {
    position: relative;
    background: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: left;
    padding-top: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
    margin-left: 0;
    padding-left: 20px;
}

.logo-container {
    margin-bottom: 30px;
}

.hero-logo {
    height: 60px;
    filter: drop-shadow(0 0 20px rgba(52, 152, 219, 0.4));
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    0% {
        filter: drop-shadow(0 0 20px rgba(52, 152, 219, 0.4));
    }
    100% {
        filter: drop-shadow(0 0 30px rgba(52, 152, 219, 0.7));
    }
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.3;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 570px;
}

.btn-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid #3498db;
}

.btn-primary:hover {
    background-color: transparent;
    color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Seção de Serviços */
.services {
    padding: 80px 0 100px 0;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%233498db" opacity="0.1"/><circle cx="60" cy="40" r="1" fill="%233498db" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%233498db" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.services::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #3498db, transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-header .subtitle {
    color: #3498db;
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header h2 {
    color: #3498db;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #3498db, transparent);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
    justify-items: center;
}

.service-card {
    width: 100%;
    max-width: 350px;
    background-color: #2c3e50;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid #3498db;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
    transition: left 0.5s;
}

.service-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(52, 152, 219, 0.9);
    color: #ffffff;
    border: 2px solid #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 2;
    transition: all 0.3s;
}

.service-card:hover .service-number {
    background: #5dade2;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(52, 152, 219, 0.2);
    border-color: #5dade2;
}

.service-card:hover::before {
    left: 100%;
}

.service-img {
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #3498db;
    box-shadow: 0 0 20px rgba(52, 152, 219, 0.3);
    transition: all 0.3s;
}

.service-card:hover .service-img {
    border-color: #5dade2;
    box-shadow: 0 0 25px rgba(52, 152, 219, 0.5);
    transform: scale(1.05);
}

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

.service-card h3 {
    color: #3498db;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

.service-card p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Seção Sobre (Nossa História) */
.about {
    padding: 80px 0;
    background-color: #2c3e50;
}

.about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text .subtitle {
    color: #3498db;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-text h2 {
    color: #3498db;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.about-text p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-text .btn-primary {
    margin-top: 20px;
}

.about-text .social-about {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

@media (max-width: 768px) {
    .about-text .social-about {
        justify-content: center;
    }
}

.about-text .social-about .social-icon {
    display: inline-flex;
    align-items: center;
    color: #3498db;
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 12px;
    border: 1px solid #3498db;
    border-radius: 5px;
    background-color: transparent;
}

.about-text .social-about .social-icon i {
    margin-right: 8px;
    font-size: 18px;
}

.about-text .social-about .social-icon:hover {
    color: #ffffff;
    background-color: #3498db;
    transform: translateY(-2px);
}

.about-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.image-frame {
    background-color: transparent;
    border: none;
    padding: 30px;
    border-radius: 0;
    box-shadow: none;
    max-width: 400px;
}

.image-frame img {
    width: 100%;
    height: auto;
}

/* Seção Antes e Depois */
.before-after {
    padding: 80px 0;
    background-color: #34495e;
    text-align: center;
}

.before-after h2 {
    color: #3498db;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
}

.slider-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 0 20px;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.slide {
    min-width: 520px;
    box-sizing: border-box;
    padding: 0 10px;
    flex: 0 0 520px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide img {
    width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border: 2px solid #3498db;
    transition: all 0.3s;
}

.slide img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(52, 152, 219, 0.3);
    border-color: #5dade2;
}

@media (max-width: 768px) {
    .slide img {
        width: 100%;
        height: auto;
        max-width: 500px;
        aspect-ratio: 1/1;
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(52, 152, 219, 0.9);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #3498db;
    cursor: pointer;
    font-size: 1rem;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background-color: #2c3e50;
    color: #3498db;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}



/* Seção de Números */
.numbers {
    padding: 80px 0;
    background-color: #34495e;
    text-align: center;
}

.numbers h2 {
    color: #3498db;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.numbers h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #3498db;
    margin: 10px auto 0;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 50px auto 0;
    padding: 40px 30px;
    background-color: #2c3e50;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(52, 152, 219, 0.3);
    border: 2px solid #3498db;
}

.stat-item {
    flex: 1;
    padding: 0 15px;
    color: #3498db;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.9;
}

.stat-divider {
    width: 1px;
    height: 100px;
    background-color: rgba(52, 152, 219, 0.3);
}

.counter {
    display: inline-block;
}

/* Seção de Perguntas Frequentes (FAQ) */
.faq {
    padding: 80px 0;
    background-color: #2c3e50;
    text-align: center;
}

.faq .subtitle {
    color: #3498db;
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq h2 {
    color: #3498db;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.faq h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #3498db;
    margin: 10px auto 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #34495e;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 2px solid #3498db;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.2);
    border-color: #5dade2;
}

.faq-question {
    padding: 20px;
    background-color: #3498db;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: all 0.3s;
}

.faq-question:hover {
    background-color: #5dade2;
}

.faq-question h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
}

.faq-icon {
    transition: transform 0.3s ease;
}

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

.faq-answer {
    background-color: #2c3e50;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    text-align: left;
}

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

.faq-answer p {
    margin: 0;
    color: #ffffff;
    line-height: 1.6;
}

/* Seção CTA (Call to Action) */
.cta {
    position: relative;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #fff;
    text-align: center;
    border-top: 3px solid #3498db;
    border-bottom: 3px solid #3498db;
}

.cta .overlay {
    background: rgba(44, 62, 80, 0.9);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta .subtitle {
    color: #3498db;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 15px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.cta h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
    color: #ffffff;
}

.cta .btn-primary {
    background-color: #3498db;
    border: 2px solid #3498db;
    color: #ffffff;
    padding: 14px 35px;
    font-size: 1.1rem;
    font-weight: 700;
}

.cta .btn-primary:hover {
    background-color: transparent;
    color: #3498db;
    border-color: #5dade2;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.4);
}

/* Footer */
footer {
    background-color: #34495e;
    color: #3498db;
    padding: 20px 0;
    text-align: center;
    border-top: 2px solid #3498db;
}

.social-links {
    margin-top: 10px;
}

.social-links a {
    color: #3498db;
    margin: 0 10px;
    font-size: 16px;
    transition: all 0.3s;
    padding: 8px 12px;
    border: 1px solid transparent;
    border-radius: 5px;
}

.social-links a:hover {
    color: #ffffff;
    background-color: #3498db;
    border-color: #3498db;
    transform: translateY(-2px);
}

.social-links i {
    margin-right: 5px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-float i {
    z-index: 1001;
}

/* Instagram Float */
.instagram-float {
    position: fixed;
    bottom: 20px;
    right: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #fff;
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s;
}

.instagram-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-float .pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    z-index: 1;
    opacity: 0.8;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Responsivo */
@media (max-width: 992px) {
    .services-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .service-card {
        max-width: 100%;
    }
    
    .slide {
        min-width: calc(50% - 20px);
        flex: 0 0 calc(50% - 20px);
    }
    
    .slide img {
        width: 100%;
        height: auto;
        max-width: 400px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text, .about-image {
        width: 100%;
        text-align: center;
    }
    
    .about-text .btn-primary {
        display: block;
        width: fit-content;
        margin: 20px auto 0 auto;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .stats-container {
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .stat-item {
        padding: 20px 0;
    }
    
    .stat-divider {
        width: 80%;
        height: 1px;
    }
    
    .faq h2 {
        font-size: 2.2rem;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    nav ul {
        display: none; /* Simplificado para este exemplo */
    }
    
    .services-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        max-width: 100%;
    }
    
    .slide {
        min-width: 100%;
        flex: 0 0 100%;
    }
    
    .slide img {
        width: 100%;
        height: auto;
        max-width: 350px;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .cta h2 {
        font-size: 1.8rem;
    }
    
    .before-after h2 {
        font-size: 2rem;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
    }
    

    
    .numbers h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .faq h2 {
        font-size: 2rem;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
} 