/* ==================================================
   ANDREIA PESSOA CONFEITARIA
   PÁGINA DE CONTATO
   CSS COMPLETO — PARTE 1 DE 3
================================================== */

/* ==================================================
   VARIÁVEIS DA IDENTIDADE VISUAL
================================================== */

:root {
    --primary: #e56590;
    --primary-hover: #ce4d78;
    --primary-dark: #b9436a;
    --primary-light: #fff0f5;

    --secondary: #f8dce5;
    --secondary-light: #fff7f9;

    --brown: #6b3541;
    --brown-dark: #512630;

    --title: #7c3d4b;
    --text: #655b5e;
    --text-light: #887c80;

    --white: #ffffff;
    --background: #fff8fa;
    --background-soft: #fffafb;
    --border: #f0dce2;

    --success: #2e9d66;
    --danger: #d9536f;

    --shadow-small:
        0 8px 24px rgba(88, 43, 55, 0.07);

    --shadow-medium:
        0 18px 45px rgba(88, 43, 55, 0.11);

    --shadow-large:
        0 30px 75px rgba(88, 43, 55, 0.15);

    --radius-small: 14px;
    --radius-medium: 22px;
    --radius-large: 32px;

    --transition: 0.3s ease;
}

/* ==================================================
   CONFIGURAÇÕES GERAIS DA PÁGINA
================================================== */

body {
    color: var(--text);
    background: var(--white);

    font-family: "Poppins", sans-serif;
}

.contact-hero,
.contact-form,
.contact-info {
    position: relative;
}

.contact-hero .container,
.contact-form .container,
.contact-info .container {
    position: relative;
    z-index: 2;
}

/* ==================================================
   HERO DA PÁGINA DE CONTATO
================================================== */

.contact-hero {
    position: relative;

    padding: 95px 0 105px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 8% 18%,
            rgba(229, 101, 144, 0.15),
            transparent 27%
        ),
        radial-gradient(
            circle at 92% 12%,
            rgba(248, 220, 229, 0.85),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fff8fa 48%,
            #fff3f7 100%
        );
}

/* Elementos decorativos */

.contact-hero::before,
.contact-hero::after {
    position: absolute;

    content: "";

    border-radius: 50%;

    pointer-events: none;
}

.contact-hero::before {
    top: -160px;
    left: -150px;

    width: 360px;
    height: 360px;

    background:
        radial-gradient(
            circle,
            rgba(229, 101, 144, 0.12),
            rgba(229, 101, 144, 0)
        );
}

.contact-hero::after {
    right: -140px;
    bottom: -180px;

    width: 400px;
    height: 400px;

    background:
        radial-gradient(
            circle,
            rgba(248, 220, 229, 0.85),
            rgba(248, 220, 229, 0)
        );
}

/* ==================================================
   COLUNA DE TEXTO DO HERO
================================================== */

.contact-hero .col-lg-5 {
    position: relative;
    z-index: 2;
}

/* Badge */

.contact-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 25px;
    padding: 11px 20px;

    color: var(--primary);
    background: rgba(255, 240, 245, 0.9);

    border: 1px solid rgba(229, 101, 144, 0.22);
    border-radius: 999px;

    box-shadow:
        0 8px 24px rgba(229, 101, 144, 0.09);

    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.1px;
}

.contact-hero .hero-badge i {
    color: var(--primary);

    font-size: 1rem;
}

/* Título */

.contact-hero .hero-title {
    max-width: 620px;
    margin: 0 0 25px;

    color: var(--title);

    font-family: "Playfair Display", serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -1.8px;
}

/* Texto */

.contact-hero .hero-text {
    max-width: 580px;
    margin: 0;

    color: var(--text);

    font-size: 1.04rem;
    line-height: 1.9;
}

/* ==================================================
   BOTÃO DO HERO
================================================== */

.contact-hero .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 56px;
    padding: 14px 30px;

    color: var(--white);
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-hover)
        );

    border: 2px solid var(--primary);
    border-radius: 999px;

    box-shadow:
        0 14px 30px rgba(229, 101, 144, 0.26);

    font-size: 0.95rem;
    font-weight: 600;

    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.contact-hero .btn-primary:hover {
    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--primary-hover),
            var(--primary-dark)
        );

    border-color: var(--primary-hover);

    box-shadow:
        0 18px 38px rgba(206, 77, 120, 0.32);

    transform: translateY(-3px);
}

.contact-hero .btn-primary:focus-visible {
    outline: 3px solid rgba(229, 101, 144, 0.24);
    outline-offset: 4px;
}

/* ==================================================
   COLUNA DOS CARDS DO HERO
================================================== */

.contact-hero .col-lg-7 {
    position: relative;
    z-index: 2;
}

.contact-hero .col-lg-7 > .row {
    position: relative;

    max-width: 660px;
    margin-left: auto;
}

/* Decoração atrás dos cards */

.contact-hero .col-lg-7 > .row::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;

    width: 88%;
    height: 92%;

    content: "";

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.72),
            rgba(255, 240, 245, 0.72)
        );

    border: 1px solid rgba(229, 101, 144, 0.12);
    border-radius: 38px;

    box-shadow:
        0 30px 70px rgba(88, 43, 55, 0.08);

    transform:
        translate(-50%, -50%)
        rotate(-2deg);
}

/* ==================================================
   MINI CARDS DO HERO
================================================== */

.mini-card {
    position: relative;

    display: grid;
    grid-template-columns: 64px 1fr;
    grid-template-rows: auto auto;
    column-gap: 18px;
    row-gap: 4px;

    align-items: center;

    min-height: 116px;
    padding: 22px 24px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(255, 250, 251, 0.96)
        );

    border: 1px solid rgba(240, 220, 226, 0.95);
    border-radius: 22px;

    box-shadow: var(--shadow-small);

    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

/* Linha decorativa */

.mini-card::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;

    width: 4px;

    content: "";

    background:
        linear-gradient(
            180deg,
            var(--primary),
            var(--secondary)
        );

    opacity: 0;

    transition: opacity var(--transition);
}

.mini-card:hover {
    border-color: rgba(229, 101, 144, 0.32);

    box-shadow: var(--shadow-medium);

    transform: translateX(8px);
}

.mini-card:hover::before {
    opacity: 1;
}

/* Ícone */

.mini-card > i {
    grid-row: 1 / 3;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 64px;
    height: 64px;

    color: var(--primary);

    background:
        linear-gradient(
            145deg,
            var(--primary-light),
            #ffe5ee
        );

    border: 1px solid rgba(229, 101, 144, 0.17);
    border-radius: 19px;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 8px 18px rgba(229, 101, 144, 0.09);

    font-size: 1.45rem;

    transition:
        color var(--transition),
        background var(--transition),
        transform var(--transition);
}

.mini-card:hover > i {
    color: var(--white);

    background:
        linear-gradient(
            145deg,
            var(--primary),
            var(--primary-hover)
        );

    transform: scale(1.06) rotate(-3deg);
}

/* Título do card */

.mini-card strong {
    align-self: end;

    display: block;

    margin: 0;

    color: var(--title);

    font-family: "Playfair Display", serif;
    font-size: 1.28rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Texto do card */

.mini-card small {
    align-self: start;

    display: block;

    color: var(--text-light);

    font-size: 0.84rem;
    line-height: 1.55;
}

/* Animação de entrada */

.contact-hero .col-lg-7 .col-md-12:nth-child(1) .mini-card {
    animation: contactFadeUp 0.7s 0.1s ease both;
}

.contact-hero .col-lg-7 .col-md-12:nth-child(2) .mini-card {
    animation: contactFadeUp 0.7s 0.2s ease both;
}

.contact-hero .col-lg-7 .col-md-12:nth-child(3) .mini-card {
    animation: contactFadeUp 0.7s 0.3s ease both;
}

.contact-hero .col-lg-7 .col-md-12:nth-child(4) .mini-card {
    animation: contactFadeUp 0.7s 0.4s ease both;
}

/* ==================================================
   FORMULÁRIO
================================================== */

.contact-form {
    position: relative;

    padding: 110px 0;

    background:
        linear-gradient(
            180deg,
            #fff8fa 0%,
            #ffffff 100%
        );
}

/* Fundo decorativo */

.contact-form::before{
    content:"";

    position:absolute;

    width:420px;
    height:420px;

    border-radius:50%;

    top:-180px;
    right:-180px;

    background:
        radial-gradient(
            circle,
            rgba(229,101,144,.10),
            transparent 70%
        );

    pointer-events:none;
}

/* ==================================================
   BOX DO FORMULÁRIO
================================================== */

.contact-box{

    position:relative;

    overflow:hidden;

    padding:55px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.98),
            rgba(255,250,251,.97)
        );

    border:1px solid rgba(240,220,226,.95);

    border-radius:34px;

    box-shadow:
        0 35px 80px rgba(88,43,55,.10);

}

/* brilho */

.contact-box::before{

    content:"";

    position:absolute;

    top:0;
    left:-40%;

    width:45%;
    height:100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.45),
            transparent
        );

    transform:skewX(-25deg);

    pointer-events:none;

}

/* ==================================================
   CABEÇALHO
================================================== */

.contact-header{

    margin-bottom:55px !important;

}

.contact-header h2{

    margin-top:18px;
    margin-bottom:18px;

    color:var(--title);

    font-family:"Playfair Display",serif;

    font-size:clamp(2.4rem,4vw,3.4rem);

    font-weight:700;

}

.contact-header p{

    max-width:640px;

    margin:auto;

    color:var(--text-light);

    font-size:1.02rem;

    line-height:1.9;

}

/* ==================================================
   LABELS
================================================== */

.form-label{

    margin-bottom:10px;

    color:var(--brown);

    font-size:.92rem;

    font-weight:600;

}

/* ==================================================
   INPUTS
================================================== */

.form-control,
.form-select{

    min-height:58px;

    padding:15px 18px;

    background:#fffafb;

    border:1px solid var(--border);

    border-radius:16px;

    color:var(--text);

    box-shadow:none;

    transition:.30s;

}

.form-control::placeholder{

    color:#aa9ca0;

}

textarea.form-control{

    min-height:170px;

    resize:vertical;

    padding-top:18px;

}

.form-control:hover,
.form-select:hover{

    border-color:#efbfd0;

}

.form-control:focus,
.form-select:focus{

    background:#fff;

    border-color:var(--primary);

    box-shadow:
        0 0 0 5px rgba(229,101,144,.12);

}

/* ==================================================
   VALIDAÇÃO
================================================== */

.form-control.is-valid{

    border-color:#2e9d66;

    background-image:none;

}

.form-control.is-invalid{

    border-color:#d9536f;

    background-image:none;

}

.invalid-feedback{

    margin-top:7px;

    font-size:.82rem;

}

/* ==================================================
   CHECKBOX
================================================== */

.form-check{

    display:flex;

    align-items:flex-start;

    gap:12px;

}

.form-check-input{

    width:20px;
    height:20px;

    margin-top:2px;

    border:2px solid #e7c7d3;

    box-shadow:none;

    cursor:pointer;

}

.form-check-input:checked{

    background-color:var(--primary);

    border-color:var(--primary);

}

.form-check-input:focus{

    box-shadow:
        0 0 0 4px rgba(229,101,144,.12);

}

.form-check-label{

    color:var(--text);

    line-height:1.7;

    cursor:pointer;

}

/* ==================================================
   BOTÃO
================================================== */

.contact-form .btn-primary{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    width:100%;

    min-height:62px;

    border:none;

    border-radius:999px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-hover)
        );

    box-shadow:
        0 18px 35px rgba(229,101,144,.28);

    font-size:1rem;

    font-weight:600;

    transition:.35s;

}

.contact-form .btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:
        0 25px 45px rgba(206,77,120,.35);

}

.contact-form .btn-primary:active{

    transform:translateY(-1px);

}

/* ==================================================
   ESPAÇAMENTO
================================================== */

.contact-form .mb-4{

    margin-bottom:1.7rem !important;

}

/* ==================================================
   ANIMAÇÃO
================================================== */

.contact-box{

    animation:contactFadeUp .8s ease both;

}

/* ==================================================
   SEÇÃO DE BENEFÍCIOS
================================================== */

.contact-info {
    position: relative;

    padding: 110px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(229, 101, 144, 0.08),
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 15%,
            rgba(248, 220, 229, 0.55),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fff8fa 100%
        );
}

.contact-info::before,
.contact-info::after {
    position: absolute;

    content: "";

    border-radius: 50%;

    pointer-events: none;
}

.contact-info::before {
    top: -120px;
    left: -120px;

    width: 300px;
    height: 300px;

    background:
        radial-gradient(
            circle,
            rgba(229, 101, 144, 0.1),
            transparent 70%
        );
}

.contact-info::after {
    right: -140px;
    bottom: -160px;

    width: 360px;
    height: 360px;

    background:
        radial-gradient(
            circle,
            rgba(248, 220, 229, 0.8),
            transparent 70%
        );
}

/* ==================================================
   CABEÇALHO DA SEÇÃO DE BENEFÍCIOS
================================================== */

.contact-info .text-center {
    position: relative;
    z-index: 2;
}

.contact-info .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 22px;
    padding: 11px 20px;

    color: var(--primary);
    background: var(--primary-light);

    border: 1px solid rgba(229, 101, 144, 0.22);
    border-radius: 999px;

    box-shadow:
        0 8px 24px rgba(229, 101, 144, 0.08);

    font-size: 0.84rem;
    font-weight: 600;
}

.contact-info .hero-badge i {
    color: var(--primary);

    font-size: 1rem;
}

.contact-info .hero-title {
    max-width: 680px;
    margin: 0 auto 20px;

    color: var(--title);

    font-family: "Playfair Display", serif;
    font-size: clamp(2.7rem, 5vw, 4.1rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1.2px;
    text-align: center;
}

.contact-info .hero-text {
    max-width: 760px !important;
    margin: 0 auto;

    color: var(--text);

    font-size: 1.05rem;
    line-height: 1.85;
    text-align: center;
}

/* ==================================================
   GRID DOS CARDS
================================================== */

.contact-info .row {
    position: relative;
    z-index: 2;

    margin-top: 54px;
}

/* ==================================================
   CARDS DE BENEFÍCIOS
================================================== */

.info-card {
    position: relative;

    height: 100%;
    padding: 34px 28px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(255, 250, 251, 0.96)
        );

    border: 1px solid rgba(240, 220, 226, 0.95);
    border-radius: 26px;

    box-shadow: var(--shadow-small);

    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.info-card::before {
    position: absolute;
    top: 0;
    right: 0;

    width: 110px;
    height: 110px;

    content: "";

    background:
        radial-gradient(
            circle at top right,
            rgba(229, 101, 144, 0.14),
            transparent 70%
        );

    pointer-events: none;
}

.info-card::after {
    position: absolute;
    right: 28px;
    bottom: 0;
    left: 28px;

    height: 3px;

    content: "";

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--primary),
            transparent
        );

    border-radius: 999px;

    opacity: 0;

    transform: scaleX(0.4);

    transition:
        opacity var(--transition),
        transform var(--transition);
}

.info-card:hover {
    border-color: rgba(229, 101, 144, 0.35);

    box-shadow:
        0 24px 55px rgba(88, 43, 55, 0.14);

    transform: translateY(-10px);
}

.info-card:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

/* ==================================================
   ÍCONES DOS BENEFÍCIOS
================================================== */

.info-icon {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 72px;
    height: 72px;
    margin-bottom: 24px;

    color: var(--primary);

    background:
        linear-gradient(
            145deg,
            var(--primary-light),
            #ffe5ee
        );

    border: 1px solid rgba(229, 101, 144, 0.18);
    border-radius: 20px;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 10px 22px rgba(229, 101, 144, 0.1);

    font-size: 1.7rem;

    transition:
        color var(--transition),
        background var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.info-card:hover .info-icon {
    color: var(--white);

    background:
        linear-gradient(
            145deg,
            var(--primary),
            var(--primary-hover)
        );

    box-shadow:
        0 14px 28px rgba(229, 101, 144, 0.25);

    transform:
        scale(1.08)
        rotate(-4deg);
}

/* ==================================================
   TEXTOS DOS BENEFÍCIOS
================================================== */

.info-card h4 {
    position: relative;
    z-index: 2;

    margin: 0 0 14px;

    color: var(--title);

    font-family: "Playfair Display", serif;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.25;
}

.info-card p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: var(--text);

    font-size: 0.95rem;
    line-height: 1.8;
}

/* ==================================================
   ANIMAÇÕES
================================================== */

@keyframes contactFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-hero .col-lg-5,
.contact-box,
.contact-info .text-center,
.info-card {
    animation: contactFadeUp 0.8s ease both;
}

.contact-info .col-md-6:nth-child(1) .info-card {
    animation-delay: 0.05s;
}

.contact-info .col-md-6:nth-child(2) .info-card {
    animation-delay: 0.12s;
}

.contact-info .col-md-6:nth-child(3) .info-card {
    animation-delay: 0.19s;
}

.contact-info .col-md-6:nth-child(4) .info-card {
    animation-delay: 0.26s;
}

/* ==================================================
   SELEÇÃO DE TEXTO
================================================== */

::selection {
    color: var(--white);
    background: var(--primary);
}

/* ==================================================
   RESPONSIVO — NOTEBOOK
================================================== */

@media (max-width: 1199.98px) {
    .contact-hero {
        padding: 85px 0 95px;
    }

    .contact-hero .hero-title {
        font-size: clamp(2.8rem, 4.5vw, 4rem);
    }

    .contact-box {
        padding: 48px;
    }

    .info-card {
        padding: 30px 24px;
    }

    .info-card h4 {
        font-size: 1.42rem;
    }
}

/* ==================================================
   RESPONSIVO — TABLET
================================================== */

@media (max-width: 991.98px) {
    .contact-hero {
        padding: 75px 0 85px;

        text-align: center;
    }

    .contact-hero .hero-title,
    .contact-hero .hero-text {
        margin-right: auto;
        margin-left: auto;
    }

    .contact-hero .btn-primary {
        margin-right: auto;
        margin-left: auto;
    }

    .contact-hero .col-lg-7 > .row {
        max-width: 720px;
        margin: 48px auto 0;
    }

    .contact-hero .col-lg-7 > .row::before {
        width: 94%;
        height: 96%;
    }

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

    .contact-form {
        padding: 90px 0;
    }

    .contact-box {
        padding: 42px 36px;
    }

    .contact-info {
        padding: 90px 0;
    }

    .contact-info .hero-title {
        max-width: 620px;
    }
}

/* ==================================================
   RESPONSIVO — CELULAR
================================================== */

@media (max-width: 767.98px) {
    .contact-hero {
        padding: 60px 0 70px;
    }

    .contact-hero .hero-badge {
        margin-bottom: 20px;
    }

    .contact-hero .hero-title {
        font-size: 2.65rem;
        line-height: 1.08;
        letter-spacing: -1px;
    }

    .contact-hero .hero-text {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .contact-hero .btn-primary {
        width: 100%;
        max-width: 360px;
    }

    .contact-hero .col-lg-7 > .row::before {
        display: none;
    }

    .mini-card {
        grid-template-columns: 56px 1fr;

        min-height: 104px;
        padding: 18px;
    }

    .mini-card > i {
        width: 56px;
        height: 56px;

        border-radius: 17px;

        font-size: 1.25rem;
    }

    .mini-card strong {
        font-size: 1.12rem;
    }

    .mini-card small {
        font-size: 0.8rem;
    }

    .contact-form {
        padding: 72px 0;
    }

    .contact-box {
        padding: 34px 24px;

        border-radius: 26px;
    }

    .contact-header {
        margin-bottom: 42px !important;
    }

    .contact-header h2 {
        font-size: 2.45rem;
    }

    .contact-header p {
        font-size: 0.96rem;
        line-height: 1.75;
    }

    .contact-info {
        padding: 72px 0;
    }

    .contact-info .hero-title {
        font-size: 2.55rem;
    }

    .contact-info .hero-text {
        font-size: 0.96rem;
        line-height: 1.75;
    }

    .contact-info .row {
        margin-top: 42px;
    }

    .info-card {
        padding: 28px 24px;
    }

    .info-card:hover {
        transform: translateY(-6px);
    }
}

/* ==================================================
   RESPONSIVO — CELULAR PEQUENO
================================================== */

@media (max-width: 575.98px) {
    .contact-hero {
        padding: 52px 0 62px;
    }

    .contact-hero .hero-title {
        font-size: 2.2rem;
    }

    .contact-hero .hero-text {
        font-size: 0.94rem;
    }

    .contact-hero .hero-badge,
    .contact-info .hero-badge {
        padding: 9px 16px;

        font-size: 0.78rem;
    }

    .mini-card {
        grid-template-columns: 50px 1fr;
        column-gap: 14px;

        min-height: 96px;
        padding: 16px;
    }

    .mini-card > i {
        width: 50px;
        height: 50px;

        border-radius: 15px;

        font-size: 1.15rem;
    }

    .mini-card strong {
        font-size: 1rem;
    }

    .mini-card small {
        font-size: 0.76rem;
    }

    .contact-form {
        padding: 60px 0;
    }

    .contact-box {
        padding: 28px 18px;

        border-radius: 22px;
    }

    .contact-header {
        margin-bottom: 36px !important;
    }

    .contact-header h2 {
        font-size: 2.1rem;
    }

    .form-control,
    .form-select {
        min-height: 54px;
        padding: 13px 15px;

        border-radius: 14px;
    }

    textarea.form-control {
        min-height: 150px;
    }

    .contact-form .btn-primary {
        min-height: 58px;
    }

    .contact-info {
        padding: 60px 0;
    }

    .contact-info .hero-title {
        font-size: 2.15rem;
    }

    .info-card {
        padding: 26px 22px;

        border-radius: 22px;
    }

    .info-icon {
        width: 62px;
        height: 62px;
        margin-bottom: 20px;

        border-radius: 18px;

        font-size: 1.45rem;
    }

    .info-card h4 {
        font-size: 1.35rem;
    }

    .info-card p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}

/* ==================================================
   ACESSIBILIDADE
================================================== */

.contact-hero a:focus-visible,
.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible,
.contact-form button:focus-visible {
    outline: 3px solid rgba(229, 101, 144, 0.28);
    outline-offset: 3px;
}

/* ==================================================
   REDUÇÃO DE MOVIMENTO
================================================== */

@media (prefers-reduced-motion: reduce) {
    .contact-hero *,
    .contact-form *,
    .contact-info * {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }
}