:root {
    --epeixao-blue-light: #3cc0ed;
    --epeixao-blue-navy: #005f9e;
    --epeixao-orange: #ea4e1b;
    --epeixao-white: #ffffff;
    --epeixao-gray-light: #f8f9fa;
}

body {
    font-family: 'Outfit', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--epeixao-blue-navy);
}

.text-navy {
    color: var(--epeixao-blue-navy) !important;
}

.text-orange {
    color: var(--epeixao-orange) !important;
}

.text-light-blue {
    color: var(--epeixao-blue-light) !important;
}

/* Utilities */
.bg-navy {
    background-color: var(--epeixao-blue-navy) !important;
}

.bg-light-blue {
    background-color: var(--epeixao-blue-light) !important;
}

.bg-orange {
    background-color: var(--epeixao-orange) !important;
}

.btn-orange {
    background-color: var(--epeixao-orange);
    color: white;
    border: none;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(234, 78, 27, 0.2);
}

.btn-orange:hover {
    background-color: #d14012;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(234, 78, 27, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(0, 95, 158, 0.95), rgba(60, 192, 237, 0.9)), url('https://d3ib1h1nvkfc33.cloudfront.net/uploads/cidade_imgs/santos-sp.webp');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-section .lead {
    font-size: 1.25rem;
    opacity: 0.9;
    font-weight: 300;
    margin-bottom: 40px;
}

/* Benefits (Vantagens) */
.benefit-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--epeixao-blue-light);
    margin-bottom: 20px;
    display: inline-block;
}

/* How It Works (Steps) */
.step-item {
    position: relative;
    padding-left: 20px;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(60, 192, 237, 0.15);
    /* Light blue transparent */
    line-height: 1;
    position: absolute;
    top: -20px;
    left: 0;
    z-index: 0;
}

.step-content {
    position: relative;
    z-index: 1;
    padding-top: 10px;
}

/* Tools Section */
.tools-img {
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* FAQ */
.accordion-button:not(.collapsed) {
    background-color: rgba(60, 192, 237, 0.1);
    color: var(--epeixao-blue-navy);
    font-weight: 600;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(60, 192, 237, 0.1);
}

/* Footer CTA */
.cta-footer {
    background: var(--epeixao-blue-navy);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.cta-footer h2 {
    color: white;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: #004d80;
    /* Darker navy */
    color: white;
    padding: 60px 0 30px;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: var(--epeixao-blue-light);
}