/* servicios.css - Diseño moderno que coincide con las otras páginas */

.josefin-sans-uniquifier {
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* Header ultra moderno */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 5%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 32px rgba(227, 140, 0, 0.12);
    position: sticky;
    top: 20px;
    z-index: 1000;
    margin: 20px 5% 0;
    border-radius: 60px;
    border: 1px solid rgba(227, 140, 0, 0.15);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo {
    max-height: 50px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 4px 6px rgba(227, 140, 0, 0.1));
}

.logo:hover {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 8px 12px rgba(227, 140, 0, 0.25));
}

.navbar {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item-servicios,
.nav-item-galeria,
.nav-item-contactame {
    margin: 0;
    position: relative;
}

.navbar p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.navbar a {
    text-decoration: none;
    color: #1a1a1a;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 600;
    padding: 10px 18px;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 30px;
    background: transparent;
    display: inline-block;
}

/* Efecto de fondo dinámico */
.navbar a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #E38C00 0%, #ffb347 100%);
    border-radius: 30px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
}

.navbar a:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(227, 140, 0, 0.4);
}

.navbar a:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* Efecto de onda al hacer click */
.navbar a:active {
    transform: scale(0.95);
}

/* Indicador de página activa con animación */
.navbar a.active {
    color: white;
    background: linear-gradient(135deg, #E38C00 0%, #ffb347 100%);
    box-shadow: 0 10px 25px -5px rgba(227, 140, 0, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 10px 25px -5px rgba(227, 140, 0, 0.5);
    }
    50% {
        box-shadow: 0 15px 35px -5px rgba(227, 140, 0, 0.8);
    }
    100% {
        box-shadow: 0 10px 25px -5px rgba(227, 140, 0, 0.5);
    }
}

/* Efecto de partículas en hover (super moderno) */
.nav-item-servicios:hover::after,
.nav-item-galeria:hover::after,
.nav-item-contactame:hover::after {
    content: '✦';
    position: absolute;
    font-size: 10px;
    color: #E38C00;
    animation: floatParticle 1s ease-out forwards;
    pointer-events: none;
}

@keyframes floatParticle {
    0% {
        opacity: 1;
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translate(20px, -20px) rotate(180deg);
    }
}

/* Línea decorativa animada */
.navbar::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #E38C00, transparent);
    transition: width 0.4s ease;
}

.navbar:hover::after {
    width: 60%;
}

/* Responsive con animaciones */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        padding: 15px 20px;
        top: 10px;
        margin: 10px 3% 0;
        border-radius: 30px;
    }
    
    .logo {
        margin-bottom: 12px;
        max-height: 45px;
        animation: bounce 2s ease-in-out infinite;
    }
    
    @keyframes bounce {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-3px); }
    }
    
    .navbar {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .navbar p {
        font-size: 14px;
    }
    
    .navbar a {
        padding: 8px 14px;
    }
}

@media (max-width: 480px) {
    .header {
        border-radius: 25px;
        padding: 12px 15px;
    }
    
    .navbar {
        gap: 8px;
    }
    
    .navbar p {
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .navbar a {
        padding: 6px 10px;
    }
}

/* Efecto de brillo en los bordes */
.header::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #E38C00, 
        transparent 20%, 
        transparent 80%, 
        #E38C00
    );
    border-radius: 62px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: borderGlow 3s linear infinite;
}

.header:hover::before {
    opacity: 0.5;
}

@keyframes borderGlow {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 300% 0%;
    }
}

/* Efecto de scroll dinámico */
.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(227, 140, 0, 0.2);
    padding: 8px 5%;
}

/* Partículas flotantes (super moderno) */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0px);
    }
}

.nav-item-servicios {
    animation: float 4s ease-in-out infinite;
    animation-delay: 0s;
}

.nav-item-galeria {
    animation: float 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

.nav-item-contactame {
    animation: float 4s ease-in-out infinite;
    animation-delay: 1s;
}

/* Estilo para el body (manteniendo tu fondo) */
body {
    background-color: #E8E8E3;
    margin: 0;
    padding: 0;
    font-family: "Josefin Sans", sans-serif;
}

/* Smooth scroll para toda la página */
html {
    scroll-behavior: smooth;
}

/* ===== SECTION TITLES (igual que en index) ===== */
.title-section {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.slogan-section {
    font-size: 24px;
    color: #E38C00;
    font-weight: 500;
    margin: 5px 0 0 0;
}

.title-badge {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin: 40px 5%;
}

.line {
    width: 5px;
    height: 80px;
    background: linear-gradient(180deg, #E38C00 0%, #ffb347 100%);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(227, 140, 0, 0.3);
}

.line-cr {
    width: 5px;
    height: 50px;
    background: linear-gradient(180deg, #E38C00 0%, #ffb347 100%);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(227, 140, 0, 0.3);
}

.this-stuff {
    display: flex;
    flex-direction: column;
}

/* ===== CONTAINERS ===== */
.container-qr,
.container-number-1,
.container-number-2,
.container-number-3,
.container-bc {
    padding: 40px 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.container-number-1,
.container-number-2,
.container-number-3 {
    background: white;
}

/* ===== CONTENT GRIDS ===== */
.info-cont-stuff {
    max-width: 1400px;
    margin: 40px auto;
}

.firt-part {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.second-part {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 0;
    flex-wrap: wrap;
}

/* ===== CONTENT BOXES (estilo moderno con glassmorphism) ===== */
.content-box {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 30px;
    min-width: 350px;
    flex: 1;
    max-width: 500px;
    border: 1px solid rgba(227, 140, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.content-box-square {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 40px 30px;
    min-width: 280px;
    flex: 1;
    max-width: 350px;
    border: 1px solid rgba(227, 140, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.content-box:hover,
.content-box-square:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(227, 140, 0, 0.15);
    border-color: rgba(227, 140, 0, 0.3);
}

/* ===== ROW & COLUMN LAYOUTS ===== */
.cont-row-box {
    display: flex;
    gap: 25px;
    align-items: center;
}

.cont-column-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

/* ===== ICONS ===== */
.icon-part {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(227, 140, 0, 0.1) 0%, rgba(255, 180, 70, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.icon-part-number {
    width: 89px;
    height: 89px;
    background: linear-gradient(135deg, rgba(227, 140, 0, 0.1) 0%, rgba(255, 180, 70, 0.1) 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.content-box:hover .icon-part,
.content-box-square:hover .icon-part-number {
    background: linear-gradient(135deg, #E38C00 0%, #ffb347 100%);
    transform: rotate(5deg) scale(1.1);
}

.icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(60%) sepia(80%) saturate(500%) hue-rotate(350deg);
    transition: all 0.3s ease;
}

.content-box:hover .icon,
.content-box-square:hover .icon {
    filter: brightness(0) invert(1);
}

/* ===== TYPOGRAPHY ===== */
.title-box {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
}

.title-box-number {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.text-box {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.text-part {
    flex: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .content-box {
        min-width: 300px;
    }
    
    .content-box-square {
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .title-section {
        font-size: 36px;
    }
    
    .slogan-section {
        font-size: 20px;
    }
    
    .title-badge {
        margin: 30px 5%;
    }
    
    .firt-part,
    .second-part {
        gap: 20px;
    }
    
    .content-box {
        min-width: 100%;
        padding: 25px;
    }
    
    .content-box-square {
        min-width: 100%;
        padding: 30px 20px;
    }
    
    .cont-row-box {
        gap: 15px;
    }
    
    .title-box {
        font-size: 20px;
    }
    
    .title-box-number {
        font-size: 16px;
    }
    
    .icon-part,
    .icon-part-number {
        width: 60px;
        height: 60px;
    }
    
    .icon-part-number {
        width: 70px;
        height: 70px;
    }
    
    .icon {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .title-section {
        font-size: 28px;
    }
    
    .slogan-section {
        font-size: 18px;
    }
    
    .line {
        height: 60px;
    }
    
    .line-cr {
        height: 40px;
    }
    
    .content-box {
        padding: 20px;
    }
    
    .cont-row-box {
        flex-direction: column;
        text-align: center;
    }
    
    .text-part {
        text-align: center;
    }
}

/* ===== FOOTER (exactamente igual que en index) ===== */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
    padding: 60px 5% 20px;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #E38C00, #ffb347, #E38C00);
    animation: slide 10s linear infinite;
    background-size: 200% 100%;
}

@keyframes slide {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: #E38C00;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #E38C00, #ffb347);
    border-radius: 2px;
}

.footer-col p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-col ul li a:hover {
    color: #E38C00;
    padding-left: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(227, 140, 0, 0.2);
}

.social-links a:hover {
    background: #E38C00;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 20px rgba(227, 140, 0, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    color: #E38C00;
    font-size: 18px;
}

.contact-item p {
    margin: 0;
    color: #aaa;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #aaa;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -12px;
    color: #E38C00;
}

.footer-links a:hover {
    color: #E38C00;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* Font Awesome para iconos sociales */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');