/**
Theme Name: Astra Child
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
Template: astra
*/

/* ========================================
   PERSONALIZACIÓN PUPPIESVET
   ======================================== */

/* ========================================
   HERO SECTION PARA PÁGINA /SSSS/
   ======================================== */

.puppiesvet-ssss-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0 0 2rem 0;
    border-radius: 0 0 50px 50px;
}

.puppiesvet-ssss-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="paws-ssss" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="8" cy="8" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="18" cy="18" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23paws-ssss)"/></svg>');
    opacity: 0.2;
}

.puppiesvet-ssss-hero .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.puppiesvet-ssss-hero .hero-content {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 3rem;
    align-items: center;
    min-height: 85vh;
}

/* VIDEO LADO IZQUIERDO */
.hero-video-left {
    position: relative;
    animation: slideInLeft 1.2s ease-out;
}

.video-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    transform: rotate(-2deg);
    transition: all 0.3s ease;
}

.video-container:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.video-container video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    min-height: 400px;
}

.video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    pointer-events: none;
}

/* TEXTO LADO DERECHO */
.hero-text-right {
    color: white;
    animation: slideInRight 1.2s ease-out;
    padding-left: 1rem;
}

.puppiesvet-ssss-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 0 0 1rem 0;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #ffffff, #f0f8ff, #e6f3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.puppiesvet-ssss-hero .hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
    color: #f0f8ff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.puppiesvet-ssss-hero .hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0 0 2.5rem 0;
    color: rgba(255,255,255,0.95);
    max-width: 500px;
}

.puppiesvet-ssss-hero .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.puppiesvet-ssss-hero .btn-primary,
.puppiesvet-ssss-hero .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.puppiesvet-ssss-hero .btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    box-shadow: 0 8px 20px rgba(255,107,107,0.4);
}

.puppiesvet-ssss-hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255,107,107,0.6);
    color: white;
}

.puppiesvet-ssss-hero .btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border-color: rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
}

.puppiesvet-ssss-hero .btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: white;
    transform: translateY(-3px);
    color: white;
}

/* ANIMACIONES MEJORADAS */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px) rotate(-5deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(-2deg);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* RESPONSIVE PARA PÁGINA /SSSS/ */
@media (max-width: 768px) {
    .puppiesvet-ssss-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .puppiesvet-ssss-hero .hero-title {
        font-size: 2.5rem;
    }

    .puppiesvet-ssss-hero .hero-subtitle {
        font-size: 1.4rem;
    }

    .video-container {
        max-width: 350px;
        margin: 0 auto;
    }

    .video-container video {
        min-height: 250px;
    }

    .hero-text-right {
        padding-left: 0;
    }

    .puppiesvet-ssss-hero .hero-buttons {
        justify-content: center;
    }
}

/* ========================================
   HERO SECTION HERMOSO CON VIDEO (ORIGINAL)
   ======================================== */

.puppiesvet-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.puppiesvet-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="paws" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="15" cy="15" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23paws)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.hero-text {
    color: white;
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin: 0 0 1rem 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #fff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
    color: #f0f8ff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    color: rgba(255,255,255,0.9);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    box-shadow: 0 5px 15px rgba(255,107,107,0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,107,107,0.6);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

.hero-video {
    position: relative;
    animation: slideInRight 1s ease-out;
}

.hero-video video {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: rotate(3deg);
    transition: transform 0.3s ease;
}

.hero-video:hover video {
    transform: rotate(0deg) scale(1.05);
}

/* Animaciones */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-video video {
        max-width: 300px;
    }
}

/* Asegurar que el fondo sea completamente blanco */
.home body {
    background-color: #ffffff !important;
}

/* Ocultar el footer en la página principal */
.home .site-footer {
    display: none !important;
}

/* Mantener solo el header visible */
.home .site-header {
    display: block;
}

/* Ocultar imagen del perro en footer y página demo */
img[src*="doggy.png"] {
    display: none !important;
}

/* Ocultar cualquier widget de imagen del perro */
.elementor-widget-image img[src*="doggy"] {
    display: none !important;
}

/* Ocultar todo el footer con perro */
.site-footer img[src*="doggy"] {
    display: none !important;
}