/* ...copiar todos os estilos existentes do index.html... */

/* Estilos adicionais para as novas páginas */
section {
    margin-bottom: 30px;
}

section h2 {
    color: #333;
    margin-bottom: 15px;
}

section ul {
    margin-left: 20px;
    line-height: 1.6;
}

section ul li {
    margin-bottom: 5px;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1) rotate(10deg);
    border-radius: 25px;
}

.whatsapp-float i {
    font-size: 30px;
}

.cookie-alert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    color: #fff;
    padding: 20px;
    text-align: center;
    z-index: 99;
    display: none;
    backdrop-filter: blur(10px);
}

.cookie-alert p {
    margin: 0;
    padding: 0 20px;
    display: inline-block;
}

.cookie-alert button {
    background: #77aaff;
    border: none;
    color: white;
    padding: 10px 25px;
    margin-left: 10px;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.cookie-alert button:hover {
    background: #5588dd;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.service-card {
    background: #fff;
    border: none;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #77aaff, #5588dd);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card i {
    font-size: 48px;
    color: #77aaff;
    margin-bottom: 15px;
}

.service-card h3 {
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card .btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #77aaff 0%, #5588dd 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s;
    font-weight: 500;
}

.service-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(119,170,255,0.4);
}

.card-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.card-buttons .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.cta-section {
    background: linear-gradient(135deg, #77aaff 0%, #5588dd 100%);
    padding: 50px 30px;
    text-align: center;
    color: white;
    margin: 40px auto;
    width: 90%;
    max-width: 1200px;
    border-radius: 15px;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #fff;
    color: #77aaff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background-color: #f8f8f8;
}

.registro-section {
    padding: 30px 0;
    background: #fafafa;
    margin-top: 60px;
    border-top: 1px solid #eee;
}

.registro-titulo {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 400;
}

.registro-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.registro-grupo {
    font-size: 9px;
    color: #888;
    line-height: 1.6;
}

.registro-grupo h3 {
    font-size: 10px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
    text-transform: uppercase;
}

.registro-item {
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
}

.registro-item span:first-child {
    color: #999;
}

.registro-item span:last-child {
    color: #666;
    font-weight: 500;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    width: 90%;
}

header {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    padding: 20px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

nav a {
    position: relative;
    padding-bottom: 5px;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #77aaff;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}
