.capa-container { display: flex; width: 100%; min-height: 100vh; }
.capa-option { flex: 1; position: relative; display: flex; flex-direction: column; justify-content: center; padding: 40px; overflow: hidden; cursor: pointer; transition: flex 0.5s ease; }
.capa-option--estetica { align-items: flex-start; text-align: left; }
.capa-option--barbearia { align-items: flex-end; text-align: right; }

.capa-option:hover { flex: 1.2; }
.capa-option::before { content: ''; position: absolute; inset: 0; background-size: cover; background-position: center; z-index: -2; transition: transform 0.5s ease; }
.capa-option:hover::before { transform: scale(1.05); }
.capa-option::after { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.6); z-index: -1; transition: background 0.3s ease; }
.capa-option:hover::after { background: rgba(0, 0, 0, 0.4); }

.capa-logo-bg { width: 100%; height: 100px; background: var(--azul-ter); display: flex; align-items: center; justify-content: center; }

/* .capa-logo-bg { position: absolute; top: 0; left: 50%; transform: translateX(-50%); z-index: 10; width: 330px; height: 110px; background: #fff; display: flex; align-items: center; justify-content: center;} */
.capa-logo-bg img { max-width: 320px; height: auto; }
.capa-content { color: #fff; z-index: 1; margin: 110px 50px 0; position: relative; }
.capa-content::before { content: ''; position: absolute; width: 80px; height: 10px; background: #7B7B7B; top: -30px;}

.capa-option--barbearia .capa-content::before { right: 0; }
.capa-option--estetica .capa-content::before { left: 0; }

.capa-content .capa-title { font-size: 2.5rem; margin-bottom: 30px; font-weight: 700; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
.capa-content p { font-size: 1.1rem; max-width: 500px; margin-bottom: 60px; opacity: 0.9; line-height: 1.6; }
.capa-btn { display: inline-flex; align-items: center; gap: 10px; padding: 10px 35px; background: transparent; border: 2px solid #fff; color: #fff; font: 300 23.48px aloe; border-radius: 18px; text-decoration: none; transition: all 0.3s ease; }
.capa-btn:hover { background: #fff; color: #000; }
.capa-btn--left::before { content: '←'; }
.capa-btn--right::after { content: '→'; }
.capa-footer { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.7); font-size: 0.9rem; z-index: 10; text-align: center; }
.capa-footer a { color: inherit; text-decoration: none; }
.capa-footer a:hover { color: #fff; }

.capa-title { font: 700 46px aloe; }
.capa-text { font: 400 15.5px / 2 aloe; }


.capa-logo-bg .icone { display: block; width: 30px; aspect-ratio: 1/1; height: auto; object-fit: contain; }
.capa-logo-bg .link { display: flex; align-items: center; gap: 10px; }
.capa-logo-bg .contatos { display: flex; align-items: center; gap: 20px; }
.capa-logo { display: flex; justify-content: space-between; color: #fff; font: 500 20px aloe;}

@media (max-width: 990px) {  
    .capa-container { flex-direction: column-reverse; } 
    .capa-container .capa-option { min-height: 50vh; align-items: center; text-align: center; } 
    .capa-option:hover { flex: 1; } 
    .capa-content .capa-title { font-size: 1.8rem; } 
    .capa-logo-bg img { max-width: 150px; object-fit: contain; } 
    .capa-logo-bg { position: static; transform: none;  width: 100%; }
    /* .capa-logo-bg { position: static; transform: none;  width: 100%; } */

    .capa-content::before { display: none; }
    .link.whatsapp p {display: none; }
}