/* Variáveis de cores */
:root {
    --primary-color: #e74c3c;
    --secondary-color: #2c3e50;
    --accent-color: #3498db;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --gray-light: #f8f9fa;
    --gray: #6c757d;
    --gray-dark: #343a40;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
}

.container {
    width: 1280px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Container do Hero */
.hero-image img {
    width: 500px;          /* largura desejada */
    max-width: 80%;        /* responsivo */
    height: auto;          /* mantém proporção */
    box-shadow: none !important;   /* remove qualquer sombra */
    filter: none !important;       /* remove possíveis efeitos de brilho ou sombra */
    outline: none !important;      /* remove contornos */
}


/* Header e Navegação */


.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.nav-logo {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
	gap: 0px;
}

.nav-logo i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
	margin-left: auto;
    padding: 0;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 0.5rem;
    display: block;
}



.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    z-index: 1001;
}

.bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}



/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 80vh;
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
    color: white;
}

.hero-content {
    flex: 1;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
       
/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--gray-light);
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--secondary-color);
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

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

.btn-secondary {
    background-color: var(--secondary-color);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Standardized Button Style (from services.php) */
.standard-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #002147;
  padding: 18px 38px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(255, 215, 0, 0.35);
  border: none;
  cursor: pointer;
}
.standard-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.45);
}

/* Forms */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 2rem 0;
}

.auth-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.auth-form h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.alert-error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.alert-success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

/* Footer */
.site-footer {
    background: #2C3E50;
    color: #ddd;
    padding: 40px 0 20px;
    font-family: font-family: 'Poppins', sans-serif;
}
/* Estilo dos cards laterais da pricing.php para uso no index.php */
.side-card {
    background: #f4f8fb;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    border: 1.5px solid #e0e0e0;
    padding: 28px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.side-card .icon {
    background: #fff;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px #0001;
    margin-bottom: 14px;
}
.side-card .title {
    font-size: 1.18rem;
    color: #17597a;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
}
.side-card .desc {
    font-size: 1.05rem;
    color: #444;
    text-align: center;
}

.site-footer h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section p,
.footer-section li {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #f39c12;
}

.footer-section i {
    margin-right: 8px;
    color: #f39c12;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    border-top: 1px solid #333;
    padding-top: 15px;
    color: #aaa;
}

/* Estilos para o PayPal */
.paypal-button-container {
    margin: 20px 0;
    text-align: center;
}

#paypal-button-container {
    min-height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
}

/* Loading spinner */
.paypal-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsividade */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--secondary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1.5rem 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }
}
.stars-input {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.stars-input input[type="radio"] {
    display: none;
}

.star-label {
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0.5;
    display: block;
}

/* CORREÇÃO: Remover esta regra problemática */
/* .stars-input input[type="radio"]:checked ~ .star-label {
    opacity: 1;
    transform: scale(1.2);
} */

/* CORREÇÃO: Adicionar regras corretas */
.stars-input input[type="radio"]:checked + .star-label,
.star-label:hover {
    opacity: 1;
    color: #f39c12;
    transform: scale(1.2);
}

/* Destacar todas as estrelas até a selecionada */
.stars-input input[type="radio"]:checked ~ .star-label {
    opacity: 0.5; /* Estrelas após a selecionada ficam opacas */
    transform: scale(1);
    color: '';
}
.g-recaptcha {
    margin: 30px 0; /* Espaço acima e abaixo */
}
.system-badge {
    padding: 0.3rem 0.6rem;
    background-color: #e3f2fd;
    color: #1565c0;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}
/* Navbar */
.navbar { background:#0a2f5d; padding:10px 0; position:sticky; top:0; z-index:1000; }
.nav-container { display:flex; justify-content:space-between; align-items:center; width:90%; max-width:1200px; margin:0 auto; }
.nav-logo { color:#fff; font-weight:700; text-decoration:none; display:flex; align-items:center; gap:5px; }
.nav-menu { display:flex; list-style:none; margin:0; padding:0; }
.nav-item { margin:0 10px; }
.nav-link { color:#fff; text-decoration:none; font-weight:500; }
.nav-link:hover { color:#f9b700; }


/* Hamburger */
.hamburger { display:none; flex-direction:column; cursor:pointer; gap:5px; }
.hamburger .bar { height:3px; width:25px; background:#fff; border-radius:2px; transition: all 0.3s; }

/* Informações do Cliente */
.client-info-section {
    margin-bottom: 2rem;
}

.client-info-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 1.5rem;
    color: white;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.client-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.client-header h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.client-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.client-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.client-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.client-label {
    font-size: 0.9rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.client-value {
    font-size: 1rem;
    font-weight: 600;
}

/* Responsividade */
@media (max-width: 768px) {
    .client-detail-row {
        grid-template-columns: 1fr;
    }
    
    .client-info-card {
        padding: 1rem;
    }
}
