
.hero {
    background: var(--white);
    color: var(--dark-color);
    padding: 5rem 0 3rem;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: linear-gradient(135deg, rgba(44, 106, 131, 0.05) 0%, rgba(238, 94, 49, 0.03) 100%);
    transform: rotate(12deg);
    z-index: 1;
}
.cvh1 {
  position: relative;
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  padding-right: 2.5rem; 
}

.cvh1 .badge {
  position: absolute;
  top: -0.4rem;   
  right: 1rem; 
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #0bcf8d; 
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.4);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    margin-bottom: 2rem;
    margin-top: 30px;
}

.logo img {
    max-width: 300px;
    height: auto;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--dark-color);
    opacity: 0.9;
}

.hero-description strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgb(255, 243, 232);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(238, 94, 49, 0.2);
}

.cvh1 {
color: rgb(79, 79, 79);
background-color: rgb(246, 247, 255);
border-radius: 20px;
width: auto;;
margin-bottom: 10px;
font-size: 20px;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(238, 94, 49, 0.2);
    border: 2px solid transparent;
}

.cta-button:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 94, 49, 0.3);
    border-color: var(--primary-color);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 70%;
    border-radius: 20px;
}

.hero-stats {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat {
    text-align: center;
    padding: 0 1rem;
    position: relative;
}

.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background: #f0f0f0;
}

.stat-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    display: block;
}

.stat-text {
    font-size: 0.85rem;
    color: var(--gray-color);
    font-weight: 500;
}

.section-divider {
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-color) 50%, 
        transparent 100%);
    margin: 0 auto;
    width: 60%;
    max-width: 300px;
    opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        gap: 2.5rem;
    }
    
    .logo img {
        max-width: 280px;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 4rem 0 2rem;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hero-text {
        align-items: center;
        text-align: center;
    }
    
    .logo {
        margin-bottom: 0.5rem;
    }
    
    .logo img {
        max-width: 250px;
    }
    
    .hero-stats {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 2rem;
        max-width: 500px;
        width: 100%;
    }
    
    .stat:not(:last-child)::after {
        display: none;
    }
    
    .stat {
        flex: 1;
        min-width: 110px;
        padding: 0.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 0 1.5rem;
    }
    
    .hero::before {
        width: 80%;
        right: -20%;
    }
    
    .logo img {
        max-width: 220px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .social-links {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
    }
    
    .cta-button {
        padding: 12px 28px;
        font-size: 1rem;
    }
    
    .hero-stats {
        padding: 1.2rem 1.5rem;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 2.5rem 0 1rem;
    }
    
    .logo img {
        max-width: 200px;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .social-links {
        gap: 0.6rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    .cta-button {
        padding: 11px 24px;
        font-size: 0.95rem;
    }
    
    .hero-stats {
        padding: 1rem;
        gap: 1rem;
    }
    
    .stat {
        min-width: 90px;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 380px) {
    .hero-stats {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1.2rem;
    }
    
    .stat {
        min-width: auto;
        padding: 0.5rem 0;
    }
    
    .stat:not(:last-child) {
        border-bottom: 1px solid #f0f0f0;
    }
}
.floating-pets {
    position: absolute;
    top: 0;
    left: 0;
    width: 110%;
    height: 110%;
    pointer-events: none;
    z-index: 3;
}

.pet-icon {
    position: absolute;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(238, 94, 49, 0.95) 0%, rgba(255, 140, 100, 0.9) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(238, 94, 49, 0.4);
    border: 4px solid rgba(255, 255, 255, 0.95);
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s ease;
    z-index: 4;
    pointer-events: all;
    cursor: pointer;
}

.pet-icon:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(238, 94, 49, 0.5);
}

.pet-icon i {
    color: white;
    font-size: 1.6rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.dog-icon {
    top: 25%;
    left: 5%;
    animation-delay: 0s;
}

.cat-icon {
    top: 15%;
    right: 15%;
    animation-delay: 0.5s;
}

.rabbit-icon {
    bottom: 30%;
    left: 8%;
    animation-delay: 1s;
}

.paw-icon {
    bottom: 20%;
    right: 8%;
    animation-delay: 1.5s;
}

.heart-icon {
    top: 45%;
    right: 5%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-10px) rotate(3deg) scale(1.02);
    }
    50% {
        transform: translateY(-5px) rotate(-3deg) scale(0.98);
    }
    75% {
        transform: translateY(-8px) rotate(2deg) scale(1.01);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

.pet-icon:nth-child(odd) {
    animation: float 4s ease-in-out infinite, pulse 3s ease-in-out infinite;
}

.pet-icon:nth-child(even) {
    animation: float 3.5s ease-in-out infinite reverse, pulse 3.5s ease-in-out infinite;
}


@media (max-width: 1024px) {
    .pet-icon {
        width: 55px;
        height: 55px;
    }
    
    .pet-icon i {
        font-size: 1.4rem;
    }
    
    .dog-icon {
        top: 20%;
        left: 3%;
    }
    
    .cat-icon {
        top: 12%;
        right: 10%;
    }
    
    .rabbit-icon {
        bottom: 25%;
        left: 5%;
    }
    
    .paw-icon {
        bottom: 18%;
        right: 5%;
    }
    
    .heart-icon {
        top: 42%;
        right: 3%;
    }
}

@media (max-width: 768px) {
    .pet-icon {
        width: 50px;
        height: 50px;
    }
    
    .pet-icon i {
        font-size: 1.3rem;
    }
    
    .dog-icon {
        top: 20%;
        left: 2%;
    }
    
    .cat-icon {
        top: 10%;
        right: 5%;
    }
    
    .rabbit-icon {
        bottom: 25%;
        left: 3%;
    }
    
    .paw-icon {
        bottom: 15%;
        right: 3%;
    }
    
    .heart-icon {
        top: 40%;
        right: 2%;
    }
    
    .floating-pets {
        display: block !important; 
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        bottom: auto;
        flex-direction: row;
        justify-content: normal;
        align-items: normal;
        gap: 0;
        padding: 0;
    }
    
    .hero-image {
        margin-bottom: 0; 
    }
}

@media (max-width: 640px) {
    .pet-icon {
        width: 45px;
        height: 45px;
        border-width: 3px;
    }
    
    .pet-icon i {
        font-size: 1.2rem;
    }
    
    .dog-icon {
        top: 18%;
        left: 1%;
    }
    
    .cat-icon {
        top: 8%;
        right: 3%;
    }
    
    .rabbit-icon {
        bottom: 22%;
        left: 2%;
    }
    
    .paw-icon {
        bottom: 12%;
        right: 2%;
    }
    
    .heart-icon {
        top: 38%;
        right: 1%;
    }
}

@media (max-width: 480px) {
    .pet-icon {
        width: 40px;
        height: 40px;
    }
    
    .pet-icon i {
        font-size: 1.1rem;
    }
    
    .dog-icon {
        top: 15%;
        left: 0%;
    }
    
    .cat-icon {
        top: 5%;
        right: 2%;
    }
    
    .rabbit-icon {
        bottom: 20%;
        left: 1%;
    }
    
    .paw-icon {
        bottom: 10%;
        right: 1%;
    }
    
    .heart-icon {
        top: 35%;
        right: 0%;
    }
}

@media (max-width: 380px) {
    .pet-icon {
        width: 38px;
        height: 38px;
        border-width: 2px;
    }
    
    .pet-icon i {
        font-size: 1rem;
    }
    
    .dog-icon {
        top: 12%;
    }
    
    .cat-icon {
        top: 3%;
    }
    
    .rabbit-icon {
        bottom: 18%;
    }
    
    .paw-icon {
        bottom: 8%;
    }
    
    .heart-icon {
        top: 32%;
    }
}

@media (min-width: 641px) {
    .pet-icon::before {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        background: linear-gradient(135deg, #ff6b35, #ff8c64);
        border-radius: 50%;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .pet-icon:hover::before {
        opacity: 1;
        animation: rotate 2s linear infinite;
    }
    
    @keyframes rotate {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }
    
    /* Tooltip on hover */
    .pet-icon::after {
        content: attr(data-tooltip);
        position: absolute;
        bottom: -45px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--secondary-color);
        color: white;
        padding: 0.6rem 1rem;
        border-radius: 10px;
        font-size: 0.85rem;
        font-weight: 500;
        white-space: nowrap;
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
        z-index: 10;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .pet-icon:hover::after {
        opacity: 1;
        bottom: -40px;
    }
}

@media (max-width: 640px) {
    .pet-icon:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
    
    .pet-icon.touched {
        background: var(--secondary-color);
        animation: none;
    }
}


.hero-stat {
    text-align: center;
    padding: 0 1rem;
    position: relative;
}

.hero-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background: #f0f0f0;
}

.hero-stat-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    display: block;
}

.hero-stat-text {
    font-size: 0.85rem;
    color: var(--gray-color);
    font-weight: 500;
}
.hours-badge {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            background: rgb(255, 99, 37);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            padding: 0.75rem 1.25rem;
            font-weight: 500;
            color: white;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        .hours-badge:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }
        
        .hours-badge i {
            font-size: 1.1rem;
            color: white;
        }
        
        .hours-info {
            display: flex;
            flex-direction: column;
            line-height: 1.3;
        }
        
        .hours-main {
            font-size: 0.9rem;
            font-weight: 600;
        }
        
        .hours-sub {
            font-size: 0.75rem;
            opacity: 0.9;
        }
        
        /* Hero mantiene su estilo distinto */
.hero-stats .stat-number {
  color: #f6612a; /* verde */
}

.hero-stats .stat-text {
  color: #919191; /* verde más oscuro */
}
        
  /* Versión Ultra Minimalista */
.contact-simple {
    background: var(--white);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    max-width: 280px;
}

.contact-simple-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.contact-simple-header i {
    color: var(--primary-color);
}

.contact-simple-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.simple-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--dark-color);
}

.simple-item i {
    width: 16px;
    color: var(--gray-color);
}

.simple-item.urgent {
    color: var(--primary-color);
    font-weight: 500;
}

.simple-item.urgent i {
    color: var(--primary-color);
}

.contact-simple-actions {
    display: flex;
}

.simple-btn {
    flex: 1;
    padding: 0.6rem 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.simple-btn:hover {
    background: #d84e25;
    transform: translateY(-1px);
}      

/* Versión Ultra Minimalista */
.minimal-stats {
    padding: 3rem 0;
    background: var(--white);
}

.minimal-stats-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}
.minimal-stats-content {
    display: flex;
    justify-content: center; /* Centra horizontal */
    align-items: center;     /* Centra vertical */
    min-height: 400px;       /* Ajusta la altura del contenedor */
}

.minimal-image img {
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
}

.minimal-numbers h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.minimal-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.minimal-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.minimal-stat:last-child {
    border-bottom: none;
}

.minimal-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.minimal-stat:nth-child(1) .minimal-icon {
    background: rgba(238, 94, 49, 0.1);
    color: var(--primary-color);
}

.minimal-stat:nth-child(2) .minimal-icon {
    background: rgba(44, 106, 131, 0.1);
    color: var(--secondary-color);
}

.minimal-stat:nth-child(3) .minimal-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.minimal-data {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.minimal-text {
    font-size: 0.9rem;
    color: var(--gray-color);
    font-weight: 500;
}

/* Responsive para versión minimalista */
@media (max-width: 768px) {
    .minimal-stats-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .minimal-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .minimal-image img {
        height: 250px;
    }
    
    .minimal-numbers h3 {
        margin-bottom: 1.5rem;
    }
    
    .minimal-grid {
        gap: 1rem;
    }
    
    .minimal-stat {
        padding: 0.875rem 0;
    }
    
    .minimal-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .minimal-number {
        font-size: 1.3rem;
    }
}
       