/* =========================================================
   RESET / BASE
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Inter, Arial, sans-serif;
    background-color: #fefefe;
    color: #023c61;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.header {
    padding: 10px 0;
    border-bottom: 1px solid #e5eaf0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #023c61;
}

.logo img {
    height: 56px;
}

.menu a {
    margin-right: 20px;
    text-decoration: none;
    color: #023c61;
    font-weight: 500;
}

.menu a:hover {
    color: #1d81b2;
}

.header-actions a {
    margin-left: 10px;
}


/* =========================================================
   BUTTONS (COMPONENTES REUTILIZÁVEIS)
   ========================================================= */

.btn-primary {
    background-color: #1d81b2;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #37a0ca;
}

.btn-secondary {
    color: #1d81b2;
    text-decoration: none;
    font-weight: 500;
}

.btn-secondary:hover {
    text-decoration: underline;
}

.btn-large {
    padding: 14px 26px;
    font-size: 16px;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    padding: 50px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    max-width: 500px;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #023c61;
}

.hero-text p {
    font-size: 18px;
    color: #6b7c93;
    margin-bottom: 30px;
}

.hero-text small {
    display: block;
    margin-top: 12px;
    color: #6b7c93;
}

.hero-image img {
    max-width: 600px;
    width: 100%;
}


/* =========================================================
   FEATURES
   ========================================================= */

.features {
    padding: 50px 0;
    background-color: #f7f9fb;
}

.features h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #023c61;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #e5eaf0;
}

.feature-card h3 {
    margin-bottom: 10px;
    color: #023c61;
}

.feature-card p {
    color: #6b7c93;
}


/* =========================================================
   PRICING
   ========================================================= */

.pricing-section {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 16px 80px 16px;
}

.pricing-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 8px;
    color: #023c61;
}

.pricing-subtitle {
    text-align: center;
    font-size: 14px;
    color: #6b7c93;
    margin-bottom: 32px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.plan-card {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 20px 18px 22px 18px;
    border: 1px solid #e5eaf0;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
}

.plan-card--featured {
    transform: translateY(-8px);
    border-width: 2px;
    border-color: #1d81b2;
}

.plan-badge-featured {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1d81b2;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 999px;
    box-shadow: 0 6px 14px rgba(29, 129, 178, 0.45);
}

.plan-header {
    margin-bottom: 18px;
}

.plan-name {
    font-size: 18px;
    font-weight: 800;
    color: #023c61;
}

.plan-tagline {
    font-size: 12px;
    color: #6b7c93;
    margin-top: 2px;
}

.plan-price-box {
    margin: 14px 0 16px 0;
    padding: 10px 12px;
    border-radius: 12px;
    background-color: rgba(76, 197, 229, 0.14);
    display: inline-flex;
    flex-direction: column;
}

.plan-price-main {
    font-size: 16px;
    font-weight: 700;
}

.plan-price-main strong {
    font-size: 22px;
}

.plan-price-note {
    font-size: 11px;
    color: #6b7c93;
}

.plan-setup {
    font-size: 13px;
    color: #6b7c93;
    margin-bottom: 12px;
    line-height: 1.5;
}

.plan-divider {
    height: 1px;
    background-color: #e5eaf0;
    margin: 10px 0 8px 0;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.plan-feature-item {
    font-size: 13px;
    padding: 7px 0;
    display: flex;
    color: #023c61;
}

.plan-feature-item .bullet {
    width: 7px;
    height: 7px;
    margin-right: 10px;
    margin-top: 6px;
    border-radius: 999px;
    background-color: #37a0ca;
}

.plan-footer {
    margin-top: 14px;
}

.plan-cta {
    display: inline-flex;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid #1d81b2;
    background-color: #1d81b2;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.plan-cta:hover {
    background-color: #37a0ca;
    border-color: #37a0ca;
}

.plan-card--secondary .plan-cta {
    background-color: #ffffff;
    color: #1d81b2;
}


/* =========================================================
   CONTACT BAND
   ========================================================= */

.contact-band {
    background-color: #2f2f2f;
    color: #fefefe;
    padding: 40px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 240px 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.contact-photo img {
    width: 190px;
    height: 190px;
    object-fit: cover;
    border-radius: 14px;
    border: 3px solid rgba(76, 197, 229, 0.35);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.contact-info h3,
.contact-social h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #4cc5e5;
}

.contact-item {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: rgba(254, 254, 254, 0.92);
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background-color: rgba(254, 254, 254, 0.10);
    color: #fefefe;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(254, 254, 254, 0.18);
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    background-color: #2b2b2b;
    padding: 18px 0;
    border-top: 1px solid rgba(254, 254, 254, 0.18);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(254, 254, 254, 0.78);
    font-size: 13px;
    text-align: center;
}


/* =========================================================
   RESPONSIVO
   ========================================================= */

@media (max-width: 960px) {
    .pricing-grid,
    .features-grid,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .social-icons,
    .contact-item {
        justify-content: center;
    }
}
