:root {
    --orange: #F7941D;
    --blue-dark: #1B2430;
    --text: #1B2430;
    --muted: #6C757D;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    color: var(--text);
    background-color: #fff;
}

.topbar {
    background-color: var(--orange);
}

.navbar-brand img,
.brand-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.btn-orange {
    background-color: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

.btn-orange:hover,
.btn-orange:focus {
    background-color: #d97f16;
    border-color: #d97f16;
    color: #fff;
}

.text-orange {
    color: var(--orange) !important;
}

.link-orange {
    color: var(--orange);
    font-weight: 600;
}

.link-orange:hover {
    color: #d97f16;
    text-decoration: none;
}

.card-accent {
    border-top: 4px solid var(--orange);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.testimonial {
    border-left: 4px solid var(--orange);
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    background-color: #fff;
}

.box-green {
    background-color: #EAF5EA;
    border: 1px solid #4CAF50;
    border-radius: 1rem;
}

.box-blue {
    background-color: #E7F3FB;
    border: 1px solid #1E88E5;
    border-radius: 1rem;
}

.box-orange {
    background-color: #FFF5EB;
    border: 1px solid var(--orange);
    border-radius: 1rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue-dark);
}

.hero .carousel-item {
    position: relative;
    border-radius: 0;
    overflow: hidden;
}

.hero .carousel-item {
    position: relative;
    border-radius: 0;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 70vh;
    min-height: 520px;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .hero-img {
        height: 55vh;
        min-height: 360px;
    }
}

.hero .carousel-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.hero .carousel-item .carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 1050;
}

.whatsapp-float:hover {
    text-decoration: none;
    color: #fff;
    background-color: #1eb150;
}

footer {
    margin-top: 4rem;
}

.site-footer .footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    display: block;
    margin-bottom: 0.35rem;
}

.site-footer .footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    font-size: 0.85rem;
}

.footer-contact a:hover {
    color: #fff;
}

.site-footer {
    background: linear-gradient(135deg, #1B2430, #141a25);
}

.footer-inline-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.footer-inline-cards .label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
}

.instagram-plugin {
    border-radius: 1rem;
    overflow: hidden;
    background-color: #fff;
    width: 100%;
    height: 180px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.instagram-iframe {
    width: 140%;
    height: 320px;
    border: 0;
    transform: scale(0.75);
    transform-origin: top left;
}

@media (max-width: 576px) {
    .instagram-plugin {
        height: 220px;
    }
    .instagram-iframe {
        width: 150%;
    }
}

.border-white-25 {
    border-color: rgba(255, 255, 255, 0.25) !important;
}

.hero button.carousel-control-prev,
.hero button.carousel-control-next {
    width: 5%;
}

.area-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    padding: 1.75rem;
    background-color: #fff;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.area-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.icon-badge {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
}

.area-card.tone-sunrise .icon-badge {
    background: #FFF1DB;
    color: #D9750E;
}

.area-card.tone-dusk .icon-badge {
    background: #FFE5E0;
    color: #D55B41;
}

.area-card.tone-honey .icon-badge {
    background: #FFF3D6;
    color: #C87F00;
}

.area-card.tone-sea .icon-badge {
    background: #E5F6F8;
    color: #1F8C9B;
}

.area-card.tone-amber .icon-badge {
    background: #FDEADF;
    color: #BF5E0A;
}

.highlight-beige {
    background-color: #FBF3E6;
    border: 1px solid #f0d9b5;
    border-radius: 1rem;
    padding: 1.5rem;
}

.numbered-card span {
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
}
.hero {
    margin-top: 0;
    padding-top: 0;
}
.modal-form {
    max-width: 720px;
    width: 95vw;
}

.modal-form .modal-content {
    border-radius: 20px;
}

.modal-form .modal-body .form-control,
.modal-form .modal-body .form-select {
    font-size: 0.95rem;
    padding: 0.45rem 0.65rem;
}

@media (max-width: 576px) {
    .modal-form {
        width: 100%;
        margin: 0 1rem;
    }
}
