/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0D1349;
    color: #FFFFFF;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Variables */
:root {
    --brand-blue: #0D1349;
    --brand-gold: #AA974B;
    --brand-gold-light: #C5B36A;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-gold {
    color: var(--brand-gold);
}

.label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    display: block;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h3 {
    font-family: serif;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    color: #9ca3af;
    max-width: 42rem;
    margin: 0 auto;
}

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

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--brand-gold);
    color: var(--brand-blue);
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: pulse-gold 2s infinite;
}

.btn-primary:hover {
    background-color: var(--brand-gold-light);
    transform: scale(1.05);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--brand-blue);
    color: var(--brand-gold);
    padding: 1.25rem 3rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: rgba(13, 19, 73, 0.9);
    transform: scale(1.05);
}

.full-width {
    width: 100%;
}

/* Animations */
@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(170, 151, 75, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(170, 151, 75, 0); }
    100% { box-shadow: 0 0 0 0 rgba(170, 151, 75, 0); }
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    background-color: #25D366;
    color: white;
    padding: 1rem;
    border-radius: 9999px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 3rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.2;
}

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

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--brand-blue), transparent, var(--brand-blue));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 56rem;
}

.logo-container {
    margin-bottom: 3rem;
}

.logo {
    margin: 0 auto;
    height: 8rem;
}

.hero-content h1 {
    font-family: serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-content h1 { font-size: 3.75rem; }
    .hero-content p { font-size: 1.25rem; }
    .logo { height: 12rem; }
}

/* Situations */
.situations {
    padding: 4rem 0;
    background-color: rgba(13, 19, 73, 0.5);
}

.card {
    background-color: var(--brand-blue);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: rgba(170, 151, 75, 0.5);
}

.icon {
    color: var(--brand-gold);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.card:hover .icon {
    transform: scale(1.1);
}

.card h4 {
    font-family: serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card p {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Authority */
.authority {
    padding: 4rem 0;
    background-color: #FFFFFF;
    color: var(--brand-blue);
}

.image-wrapper {
    position: relative;
}

.image-wrapper img {
    aspect-ratio: 4/5;
    border-radius: 1rem;
    object-fit: cover;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background-color: var(--brand-gold);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: none;
}

@media (min-width: 768px) {
    .badge { display: block; }
}

.badge .number {
    display: block;
    font-size: 1.875rem;
    font-weight: 700;
}

.badge .text {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.authority .content h3 {
    font-family: serif;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .authority .content h3 { font-size: 2.25rem; }
}

.authority .content p {
    color: #374151;
    margin-bottom: 1rem;
}

.features {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item svg {
    color: var(--brand-gold);
}

.feature-item span {
    font-weight: 600;
    font-size: 0.875rem;
}

/* Process */
.process {
    padding: 4rem 0;
    background-color: #FFFFFF;
    color: var(--brand-blue);
}

.process-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(170, 151, 75, 0.2);
    display: none;
}

@media (min-width: 768px) {
    .process-steps::before { display: block; }
}

.step {
    position: relative;
    z-index: 10;
    text-align: center;
}

.step-number {
    width: 4rem;
    height: 4rem;
    background-color: var(--brand-blue);
    color: var(--brand-gold);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.step h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step p {
    color: #4b5563;
    font-size: 0.875rem;
}

/* Benefits */
.benefits {
    padding: 4rem 0;
}

.benefits h3 {
    font-family: serif;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .benefits h3 { font-size: 2.25rem; }
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
}

.benefit-item svg {
    color: var(--brand-gold);
    flex-shrink: 0;
}

.benefit-item h4 {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.benefit-item p {
    color: #9ca3af;
    font-size: 0.875rem;
}

.commitment-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

@media (min-width: 768px) {
    .commitment-card { padding: 3rem; }
}

.commitment-icon {
    color: var(--brand-gold);
    margin: 0 auto 1rem;
}

.commitment-card h4 {
    font-family: serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.commitment-card p {
    color: #d1d5db;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Final CTA */
.final-cta {
    padding: 4rem 0;
    background-color: var(--brand-gold);
    color: var(--brand-blue);
    text-align: center;
}

.final-cta h2 {
    font-family: serif;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .final-cta h2 { font-size: 3rem; }
}

.final-cta p {
    font-size: 1.125rem;
    font-weight: 500;
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    opacity: 0.8;
}

/* Footer */
footer {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    height: 6rem;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-contact h4, .footer-hours h4 {
    color: var(--brand-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.footer-contact ul li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #d1d5db;
    font-size: 0.875rem;
}

.footer-contact svg {
    color: var(--brand-gold);
    flex-shrink: 0;
}

.footer-hours p {
    color: #d1d5db;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.plantao {
    margin-top: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.plantao-label {
    color: var(--brand-gold) !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem !important;
    margin-bottom: 0.25rem !important;
}

.plantao p {
    font-size: 0.75rem !important;
    color: #9ca3af !important;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #6b7280;
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links span:hover {
    color: var(--brand-gold);
    cursor: pointer;
}
