/**
 * Estilos Principales - Bufete de Abogados
 * Diseño Moderno Minimalista
 */

/* ===== Variables CSS ===== */
:root {
    --color-primario: #1a1a2e;
    --color-secundario: #16213e;
    --color-acento: #e94560;
    --color-texto: #333333;
    --color-texto-claro: #ffffff;
    --color-fondo: #ffffff;
    --color-fondo-secundario: #f8f9fa;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-texto);
    background-color: var(--color-fondo);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-primario);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Navbar ===== */
#mainNavbar {
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

#mainNavbar.scrolled {
    padding: 12px 0;
    background: var(--color-primario);
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    font-size: 1.8rem;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-texto-claro);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    padding: 10px 20px;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--color-acento);
    transform: scaleX(0);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-texto-claro);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.btn-accent {
    background: var(--color-acento);
    color: var(--color-texto-claro);
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-accent:hover {
    background: #d63854;
    color: var(--color-texto-claro);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(233, 69, 96, 0.3);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.85) 100%);
    z-index: 1;
}

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

.hero-text {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(233, 69, 96, 0.2);
    color: var(--color-acento);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
    border: 1px solid rgba(233, 69, 96, 0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--color-texto-claro);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-buttons .btn {
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 50px;
}

.hero-buttons .btn-outline-light {
    border-width: 2px;
}

.hero-buttons .btn-outline-light:hover {
    background: var(--color-texto-claro);
    color: var(--color-primario);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-decoration: none;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.5rem;
    margin-top: 5px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ===== Stats Bar ===== */
.stats-bar {
    background: var(--color-primario);
    padding: 50px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-acento);
    margin-bottom: 10px;
}

.stat-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ===== Section Styles ===== */
.section {
    padding: 100px 0;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 40px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(233, 69, 96, 0.05) 100%);
    color: var(--color-acento);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 15px;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ===== Service Cards ===== */
.section-services {
    background: var(--color-fondo-secundario);
}

.service-card {
    background: var(--color-fondo);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(233, 69, 96, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primario) 0%, var(--color-secundario) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.service-icon i {
    font-size: 2rem;
    color: var(--color-texto-claro);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--color-acento) 0%, #d63384 100%);
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--color-primario);
}

.service-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--color-acento);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    color: var(--color-primario);
    gap: 12px;
}

/* ===== About Preview ===== */
.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--color-acento);
    color: var(--color-texto-claro);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about-experience-badge .years {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.about-experience-badge .text {
    font-size: 0.85rem;
    opacity: 0.9;
}

.about-text {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-primario);
    font-weight: 500;
}

.feature-item i {
    color: var(--color-acento);
    font-size: 1.2rem;
}

/* ===== Testimonials ===== */
.section-testimonials {
    background: var(--color-fondo-secundario);
}

.testimonial-card {
    background: var(--color-fondo);
    padding: 35px;
    border-radius: 20px;
    height: 100%;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 25px;
    opacity: 0.1;
}

.testimonial-quote i {
    font-size: 4rem;
    color: var(--color-acento);
}

.testimonial-text {
    font-size: 1.05rem;
    color: #555;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primario) 0%, var(--color-secundario) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-texto-claro);
    font-weight: 700;
    font-size: 1.2rem;
}

.author-name {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.author-role {
    color: #888;
    font-size: 0.9rem;
}

.testimonial-stars {
    color: #ffc107;
}

.testimonial-stars i {
    font-size: 0.9rem;
}

/* ===== CTA Section ===== */
.section-cta {
    background: linear-gradient(135deg, var(--color-primario) 0%, var(--color-secundario) 100%);
    padding: 80px 0;
}

.cta-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-title {
    color: var(--color-texto-claro);
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.section-cta .btn-light {
    background: var(--color-texto-claro);
    color: var(--color-primario);
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.section-cta .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, var(--color-primario) 0%, var(--color-secundario) 100%);
    padding: 180px 0 100px;
    position: relative;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-title {
    color: var(--color-texto-claro);
    font-size: 3rem;
    margin-bottom: 15px;
    position: relative;
}

.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a:hover {
    color: var(--color-texto-claro);
}

.breadcrumb-item.active {
    color: var(--color-acento);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ===== Story Section (Nosotros) ===== */
.story-image-wrapper {
    position: relative;
}

.story-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.story-pattern {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--color-acento);
    border-radius: 20px;
    z-index: -1;
}

.story-text {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.story-stats {
    display: flex;
    gap: 40px;
}

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

.story-stat .stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-acento);
    display: block;
}

.story-stat .stat-label {
    color: #666;
    font-size: 0.9rem;
}

/* ===== Mission & Vision ===== */
.section-mission-vision {
    background: var(--color-fondo-secundario);
}

.mv-card {
    background: var(--color-fondo);
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.mission-card:hover {
    border-bottom-color: var(--color-acento);
}

.vision-card:hover {
    border-bottom-color: var(--color-primario);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primario) 0%, var(--color-secundario) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mv-icon i {
    font-size: 2rem;
    color: var(--color-texto-claro);
}

.mv-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.mv-text {
    color: #666;
    font-size: 1rem;
}

/* ===== Values Section ===== */
.value-card {
    background: var(--color-fondo);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 2px solid transparent;
}

.value-card:hover {
    border-color: var(--color-acento);
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(233, 69, 96, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.value-icon i {
    font-size: 1.8rem;
    color: var(--color-acento);
}

.value-card:hover .value-icon {
    background: var(--color-acento);
}

.value-card:hover .value-icon i {
    color: var(--color-texto-claro);
}

.value-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.value-text {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ===== Team Section ===== */
.section-team {
    background: var(--color-fondo-secundario);
}

.team-card {
    background: var(--color-fondo);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image {
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    width: 45px;
    height: 45px;
    background: var(--color-acento);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-texto-claro);
    font-size: 1.2rem;
    transition: var(--transition);
}

.team-social:hover {
    background: var(--color-texto-claro);
    color: var(--color-acento);
    transform: scale(1.1);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-name {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.team-role {
    display: block;
    color: var(--color-acento);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.team-specialty {
    color: #888;
    font-size: 0.85rem;
}

/* ===== Contact Section ===== */
.contact-info-wrapper {
    height: 100%;
}

.contact-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-subtitle {
    color: #666;
    margin-bottom: 35px;
}

.contact-info-list {
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--color-primario) 0%, var(--color-secundario) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.3rem;
    color: var(--color-texto-claro);
}

.contact-details h5 {
    font-size: 1rem;
    margin-bottom: 5px;
    font-family: var(--font-body);
    font-weight: 600;
}

.contact-details p {
    color: #666;
    margin-bottom: 0;
}

.contact-social h5 {
    font-size: 1rem;
    margin-bottom: 15px;
}

.contact-social .social-links {
    display: flex;
    gap: 10px;
}

.contact-social .social-links a {
    width: 45px;
    height: 45px;
    background: var(--color-fondo-secundario);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primario);
    font-size: 1.1rem;
    transition: var(--transition);
}

.contact-social .social-links a:hover {
    background: var(--color-acento);
    color: var(--color-texto-claro);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: var(--color-fondo);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.form-subtitle {
    color: #666;
    margin-bottom: 25px;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 15px;
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--color-acento);
    box-shadow: 0 0 0 4px rgba(233, 69, 96, 0.1);
}

.contact-form .form-floating > label {
    padding-left: 15px;
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, var(--color-acento) 0%, #d63384 100%);
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(233, 69, 96, 0.3);
}

/* ===== Map Section ===== */
.section-map {
    margin-top: -50px;
}

.map-wrapper {
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
    display: block;
    filter: grayscale(30%);
    transition: var(--transition);
}

.map-wrapper:hover iframe {
    filter: grayscale(0);
}

/* ===== FAQ Section ===== */
.section-faq {
    background: var(--color-fondo-secundario);
}

.accordion-item {
    background: var(--color-fondo);
    border: none;
    border-radius: 15px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--color-primario);
    background: transparent;
}

.accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--color-acento);
    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' fill='%23e94560' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23e94560' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.accordion-body {
    padding: 0 25px 20px;
    color: #666;
}

/* ===== Footer ===== */
.footer {
    background: var(--color-primario);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-brand .brand-icon {
    font-size: 2rem;
}

.footer-brand .brand-text {
    font-size: 1.3rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer .social-links {
    display: flex;
    gap: 10px;
}

.footer .social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-texto-claro);
    font-size: 1rem;
    transition: var(--transition);
}

.footer .social-links a:hover {
    background: var(--color-acento);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--color-texto-claro);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-family: var(--font-body);
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-acento);
    padding-left: 10px;
}

.footer-links a:hover::before {
    opacity: 1;
}

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

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--color-acento);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a:hover {
    color: var(--color-acento);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== Scroll to Top ===== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-primario);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-texto-claro);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--color-acento);
    transform: translateY(-5px);
}

/* ===== Buttons ===== */
.btn-primary {
    background: linear-gradient(135deg, var(--color-primario) 0%, var(--color-secundario) 100%);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26, 26, 46, 0.3);
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section {
        padding: 70px 0;
    }

    .about-experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        display: inline-block;
    }

    .story-pattern {
        display: none;
    }

    .cta-wrapper {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .stats-bar .row {
        gap: 0;
    }

    .stat-number {
        font-size: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .story-stats {
        flex-direction: column;
        gap: 20px;
    }

    .page-header {
        padding: 150px 0 70px;
    }

    .page-title {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .scroll-top {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ===== Animation on Scroll Enhancements ===== */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* ===== Selection Color ===== */
::selection {
    background: var(--color-acento);
    color: var(--color-texto-claro);
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-fondo-secundario);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primario);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-acento);
}
