/* Global Styles */
:root {
    --primary: #4361ee; /* Azul vibrante */
    --secondary: #f72585; /* Rosa */
    --dark: #212529;
    --light: #f8f9fa;
    --success: #4cc9f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

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

.btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
}

.btn:hover {
    background: #3a56d4;
}

/* Header */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo img {
    height: 40px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: /* linear-gradient(rgba(67, 97, 238, 0.8), rgba(67, 97, 238, 0.8)), */
                url('assets/hero-bg.jpg') no-repeat center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Serviços - Grid Responsivo */
.services .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    width: 100%;
}

/* Adicione ao final do style.css */
@media (max-width: 480px) {
    .services .card {
        padding: 25px 20px;
    }
    
    .services .card i {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 1.8rem;
    }
    
    .services h2 {
        font-size: 1.8rem;
    }
}

/* Efeito de toque em mobile */
.card-touched {
    transform: scale(0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

/* Melhorias nos cards */
.services .card {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.services .card i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
    background: rgba(67, 97, 238, 0.1);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.services .card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.services .card p {
    color: #666;
    font-size: 0.95rem;
    margin-top: auto;
}

/* Estilos para o Calendly */
.calendar {
    padding: 80px 0;
    background-color: #f8fafc;
}

.calendly-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.calendly-inline-widget {
    width: 100%;
    min-height: 650px;
}

.calendly-fallback {
    display: none;
    padding: 30px;
    text-align: center;
    background: white;
}

@media (max-width: 768px) {
    .calendly-inline-widget {
        min-height: 800px;
    }
}

/* Mostra fallback se o JS estiver desativado */
.no-js .calendly-fallback {
    display: block;
}

/* Contact Form */
.contact {
    padding: 80px 0;
    background: white;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.contact input, .contact select, .contact textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-info {
    margin-bottom: 20px;
}

.social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social a {
    color: white;
    font-size: 1.5rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.cookie-banner p {
    margin: 0;
}

.cookie-banner a {
    color: var(--success);
    text-decoration: underline;
}

/* Responsivo */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .hero h1 {
        font-size: 2rem;
    }
}

/* Estilo para a checkbox RGPD */
.checkbox-group {
    margin: 15px 0;
    display: flex;
    align-items: center;
}

.checkbox-group input {
    margin-right: 10px;
    min-width: 18px;
}

.checkbox-group label {
    font-size: 0.9rem;
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: underline;
}

h2 {
  text-align: center;
}