/* ========================================
   INMOBILIARIA JM - TEMA CUSTOM FUCSIA
   ======================================== */

/* Variables de color */
:root {
    --jm-fucsia: #D946EF;
    --jm-fucsia-dark: #C026D3;
    --jm-fucsia-light: #F0ABFC;
    --jm-fucsia-soft: #FAE8FF;
    --jm-purple: #A855F7;
    --jm-purple-dark: #7C3AED;
    --jm-dark: #1E1B4B;
    --jm-gray: #6B7280;
    --jm-light-gray: #F3F4F6;
    --jm-white: #FFFFFF;
    --jm-gradient: linear-gradient(135deg, #D946EF 0%, #A855F7 50%, #7C3AED 100%);
    --jm-gradient-soft: linear-gradient(135deg, #FAE8FF 0%, #F3E8FF 100%);
}

/* ========================================
   RESET DE COLORES BOOTSTRAP
   ======================================== */

/* Primary a Fucsia */
.btn-primary,
.bg-primary,
.text-bg-primary,
.badge.bg-primary,
.alert-primary,
.list-group-item-primary,
.table-primary,
.dropdown-item.active,
.dropdown-item:active,
.nav-pills .nav-link.active,
.pagination .page-item.active .page-link,
.progress-bar,
.form-check-input:checked,
.form-range::-webkit-slider-thumb,
.form-range::-moz-range-thumb,
.accordion-button:not(.collapsed) {
    background-color: var(--jm-fucsia) !important;
    border-color: var(--jm-fucsia) !important;
}

.btn-primary {
    background: var(--jm-gradient) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(217, 70, 239, 0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 70, 239, 0.6);
    background: linear-gradient(135deg, #C026D3 0%, #9333EA 50%, #6D28D9 100%) !important;
}

.btn-outline-primary {
    color: var(--jm-fucsia) !important;
    border-color: var(--jm-fucsia) !important;
    background: transparent !important;
}

.btn-outline-primary:hover {
    background: var(--jm-fucsia) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(217, 70, 239, 0.4);
}

.text-primary {
    color: var(--jm-fucsia) !important;
}

.border-primary {
    border-color: var(--jm-fucsia) !important;
}

.alert-primary {
    background-color: var(--jm-fucsia-soft) !important;
    color: var(--jm-purple-dark) !important;
    border-color: var(--jm-fucsia-light) !important;
}

/* Links */
a {
    color: var(--jm-fucsia);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--jm-fucsia-dark);
}

/* ========================================
   TIPOGRAFÍA
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    color: var(--jm-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--jm-dark);
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--jm-gradient);
    border-radius: 2px;
}

/* ========================================
   NAVEGACIÓN
   ======================================== */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    background: var(--jm-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand span {
    color: var(--jm-purple);
    -webkit-text-fill-color: var(--jm-purple);
}

.nav-link {
    font-weight: 500;
    color: var(--jm-dark) !important;
    margin: 0 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--jm-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--jm-fucsia) !important;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    min-height: 100vh;
    background: var(--jm-gradient-soft);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: var(--jm-gradient);
    opacity: 0.1;
    border-radius: 50%;
    transform: rotate(-15deg);
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 100%;
    background: var(--jm-fucsia);
    opacity: 0.05;
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    background: var(--jm-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--jm-gray);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(217, 70, 239, 0.3);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--jm-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    color: var(--jm-gray);
    font-size: 0.9rem;
}

/* ========================================
   BANNER SLIDER
   ======================================== */
.banner-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.8) 0%, rgba(168, 85, 247, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.banner-content h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ========================================
   CARDS DE INMUEBLES
   ======================================== */
.inmueble-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    border: none;
}

.inmueble-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(217, 70, 239, 0.2);
}

.inmueble-card .card-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.inmueble-card .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.inmueble-card:hover .card-img-top {
    transform: scale(1.1);
}

.inmueble-card .badge-tipo {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-arriendo {
    background: var(--jm-gradient);
    color: white;
}

.badge-venta {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
}

.inmueble-card .card-body {
    padding: 1.5rem;
}

.inmueble-card .card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--jm-dark);
}

.inmueble-card .card-location {
    color: var(--jm-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.inmueble-card .card-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--jm-light-gray);
}

.inmueble-card .feature {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: var(--jm-gray);
}

.inmueble-card .feature i {
    color: var(--jm-fucsia);
}

.inmueble-card .card-price {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--jm-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
}

.inmueble-card .card-price-label {
    font-size: 0.8rem;
    color: var(--jm-gray);
}

/* ========================================
   DETALLE DE INMUEBLE
   ======================================== */
.inmueble-detail-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.inmueble-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inmueble-detail-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(30, 27, 75, 0.9) 0%, transparent 60%);
}

.inmueble-detail-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 0;
    color: white;
}

.inmueble-detail-info h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.detail-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--jm-fucsia-light);
}

.detail-features-box {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.feature-item {
    text-align: center;
    padding: 1rem;
}

.feature-item i {
    font-size: 2rem;
    color: var(--jm-fucsia);
    margin-bottom: 0.5rem;
}

.feature-item .feature-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--jm-dark);
}

.feature-item .feature-label {
    color: var(--jm-gray);
    font-size: 0.9rem;
}

/* ========================================
   SECCIÓN PROYECTOS
   ======================================== */
.proyecto-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.proyecto-card:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(217, 70, 239, 0.3);
}

.proyecto-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.proyecto-card:hover img {
    transform: scale(1.1);
}

.proyecto-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(30, 27, 75, 0.95) 0%, rgba(30, 27, 75, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: all 0.4s ease;
}

.proyecto-card:hover .overlay {
    background: linear-gradient(to top, rgba(217, 70, 239, 0.95) 0%, rgba(168, 85, 247, 0.7) 50%, rgba(168, 85, 247, 0.3) 100%);
}

.proyecto-card h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.proyecto-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.proyecto-card .btn-ver-proyecto {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.proyecto-card:hover .btn-ver-proyecto {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   MICROSITIO DE PROYECTO
   ======================================== */
.proyecto-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.proyecto-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proyecto-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.9) 0%, rgba(168, 85, 247, 0.7) 100%);
}

.proyecto-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.proyecto-hero-content h1 {
    color: white;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.proyecto-hero-content .logo-proyecto {
    max-width: 200px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.proyecto-info-card {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.proyecto-stat {
    text-align: center;
    padding: 1.5rem;
}

.proyecto-stat i {
    font-size: 2.5rem;
    color: var(--jm-fucsia);
    margin-bottom: 1rem;
}

.proyecto-stat .stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--jm-dark);
    margin-bottom: 0.3rem;
}

.proyecto-stat .stat-label {
    color: var(--jm-gray);
    font-size: 0.9rem;
}

.tipo-planta-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.tipo-planta-card:hover {
    border-color: var(--jm-fucsia);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(217, 70, 239, 0.2);
}

.tipo-planta-card .tipo-header {
    background: var(--jm-gradient);
    color: white;
    padding: 1rem;
    text-align: center;
}

.tipo-planta-card .tipo-header h4 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
}

.tipo-planta-card .tipo-body {
    padding: 1.5rem;
}

.tipo-planta-card .area {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--jm-fucsia);
    text-align: center;
    margin-bottom: 1rem;
}

/* ========================================
   NOTICIAS
   ======================================== */
.noticia-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.noticia-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(217, 70, 239, 0.2);
}

.noticia-card .noticia-img {
    height: 200px;
    overflow: hidden;
}

.noticia-card .noticia-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.noticia-card:hover .noticia-img img {
    transform: scale(1.1);
}

.noticia-card .card-body {
    padding: 1.5rem;
}

.noticia-card .fecha {
    color: var(--jm-fucsia);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.noticia-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--jm-dark);
}

.noticia-card .resumen {
    color: var(--jm-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   PREGUNTAS FRECUENTES
   ======================================== */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.accordion-button {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--jm-dark);
    background: white;
    border: none;
}

.accordion-button:not(.collapsed) {
    color: var(--jm-fucsia);
    background: var(--jm-fucsia-soft);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23D946EF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    color: var(--jm-gray);
    background: white;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--jm-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-size: 2rem;
    font-weight: 800;
    background: var(--jm-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer h5 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--jm-gradient);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--jm-fucsia);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-contact-item i {
    color: var(--jm-fucsia);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   BOTÓN WHATSAPP FLOTANTE
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-float .tooltip {
    position: absolute;
    right: 70px;
    background: white;
    color: var(--jm-dark);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* ========================================
   FILTROS DE BÚSQUEDA
   ======================================== */
.search-filters {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    margin-top: -80px;
    position: relative;
    z-index: 100;
}

.search-filters .form-select,
.search-filters .form-control {
    border: 2px solid var(--jm-light-gray);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-filters .form-select:focus,
.search-filters .form-control:focus {
    border-color: var(--jm-fucsia);
    box-shadow: 0 0 0 0.25rem rgba(217, 70, 239, 0.25);
}

.search-filters .btn-buscar {
    width: 100%;
    padding: 0.8rem;
    border-radius: 12px;
    font-weight: 600;
}

/* ========================================
   UTILIDADES
   ======================================== */
.section-padding {
    padding: 5rem 0;
}

.bg-soft {
    background: var(--jm-gradient-soft);
}

.text-gradient {
    background: var(--jm-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-gradient {
    background: var(--jm-gradient);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(217, 70, 239, 0.4);
    color: white;
}

/* ========================================
   ANIMACIONES
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .proyecto-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 15px;
        margin-top: 1rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }
    
    .search-filters {
        margin-top: -40px;
    }
}

@media (max-width: 767.98px) {
    .hero-stats {
        gap: 1.5rem;
    }
    
    .hero-stat-number {
        font-size: 1.8rem;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}
