/* Zoomare - Hospital Veterinário 24h */

:root {
    --primary: #54b9cd;
    --primary-dark: #449aa8;
    --footer: #f6a51d;
    --footer-dark: #e09515;
    --white: #ffffff;
    --off-white: #f9fafb;
    --dark: #1e3a47;
    --text: #2d4a57;
    --text-light: #5a7a8a;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
}

/* HERO */
.hero {
    position: relative;
    /*min-height: 100vh;*/
    background: linear-gradient(135deg, #3a9fb3 0%, #54b9cd 25%, #6dc8d9 50%, #54b9cd 75%, #449aa8 100%);
    background-size: 400% 400%;
    animation: gradient-shift 12s ease infinite;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 100% 80% at 10% 20%, rgba(255, 255, 255, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 90% 90%, rgba(0, 80, 100, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background:
        radial-gradient(circle at 30% 70%, rgba(246, 165, 29, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: float-bg 8s ease-in-out infinite;
}

@keyframes float-bg {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-20px, 20px) rotate(2deg);
    }
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 10;
}

.hero__content {
    position: relative;
    z-index: 10;
    padding: 80px 0;
    max-width: 800px;
}

.hero__logo {
    height: 100px;
    width: auto;
    margin-bottom: 36px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.hero__logo:hover {
    transform: scale(1.05);
}

.hero__title {
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero__brand {
    color: var(--white);
}

.hero__highlight {
    display: inline-block;
    background: #e53935;
    color: var(--white);
    padding: 4px 18px;
    border-radius: 8px;
    font-size: 0.85em;
    font-style: italic;
    box-shadow: 0 4px 20px rgba(229, 57, 53, 0.4);
}


.hero__subtitle {
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 400;
    opacity: 0.95;
}

.hero__tagline {
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 800;
    font-style: italic;
    margin-bottom: 32px;
    padding: 10px 24px;
    border-radius: 8px;
    display: inline-block;
    background: #e53935;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 20px rgba(229, 57, 53, 0.4);
}

.hero__action-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 600px;
}

@media (max-width: 768px) {
    .hero__action-buttons {
        display: none;
    }
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 16px;
    border-radius: 16px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.action-btn:hover {
    transform: translateY(-4px) scale(1.02);
}

.action-btn__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 1);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.action-btn:hover .action-btn__icon {
    transform: scale(1.1);
}

.action-btn__icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.2;
}

.action-btn--whatsapp .action-btn__icon svg {
    color: #25D366;
}

.action-btn--map .action-btn__icon svg {
    color: #EA8D2C;
}

.action-btn--uber .action-btn__icon svg {
    color: #1a1a1a;
}

.action-btn--phone .action-btn__icon svg {
    color: #4267B2;
}

.action-btn__text {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

.action-btn--whatsapp {
    background: #25D366;
    box-shadow:
        0 8px 24px rgba(37, 211, 102, 0.5),
        inset 0 -4px 0 rgba(0, 0, 0, 0.15);
}

.action-btn--whatsapp:hover {
    box-shadow:
        0 14px 36px rgba(37, 211, 102, 0.6),
        inset 0 -4px 0 rgba(0, 0, 0, 0.15);
}

.action-btn--map {
    background: #EA8D2C;
    box-shadow:
        0 8px 24px rgba(234, 141, 44, 0.5),
        inset 0 -4px 0 rgba(0, 0, 0, 0.15);
}

.action-btn--map:hover {
    box-shadow:
        0 14px 36px rgba(234, 141, 44, 0.6),
        inset 0 -4px 0 rgba(0, 0, 0, 0.15);
}

.action-btn--uber {
    background: #1a1a1a;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.5),
        inset 0 -4px 0 rgba(0, 0, 0, 0.3);
}

.action-btn--uber:hover {
    box-shadow:
        0 14px 36px rgba(0, 0, 0, 0.6),
        inset 0 -4px 0 rgba(0, 0, 0, 0.3);
}

.action-btn--phone {
    background: #4267B2;
    box-shadow:
        0 8px 24px rgba(66, 103, 178, 0.5),
        inset 0 -4px 0 rgba(0, 0, 0, 0.15);
}

.action-btn--phone:hover {
    box-shadow:
        0 14px 36px rgba(66, 103, 178, 0.6),
        inset 0 -4px 0 rgba(0, 0, 0, 0.15);
}

.hero__image {
    position: absolute;
    bottom: -550px;
    left: 580px;
    width: 100%;
    max-width: 900px;
    z-index: 5;
}

.hero__image img {
    width: 100%;
    height: auto;
    display: block;
}


/* SERVICES */
.services {
    padding: 90px 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 80%, rgba(84, 185, 205, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(246, 165, 29, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(84, 185, 205, 0.04) 0%, transparent 70%),
        var(--off-white);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(84, 185, 205, 0.08) 0%, transparent 8%),
        radial-gradient(circle at 75% 75%, rgba(246, 165, 29, 0.06) 0%, transparent 8%),
        radial-gradient(circle at 50% 50%, rgba(84, 185, 205, 0.04) 0%, transparent 10%);
    background-size: 60px 60px;
    animation: pattern-float 20s linear infinite;
    pointer-events: none;
}

.services::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 120%;
    height: 100%;
    background:
        radial-gradient(ellipse 100% 100% at 50% 100%, rgba(84, 185, 205, 0.1) 0%, transparent 60%);
    animation: wave-pulse 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pattern-float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(60px, 60px);
    }
}

@keyframes wave-pulse {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-20px) scale(1.05);
        opacity: 0.8;
    }
}

.services__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.services__header {
    text-align: center;
    margin-bottom: 50px;
}

.services__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.services__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.card {
    background: var(--white);
    border-radius: 16px;
    padding: 20px 18px;
    text-align: left;
    position: relative;
    box-shadow: 0 4px 20px rgba(30, 58, 71, 0.06);
    transition: all 0.35s ease;
    border: 2px solid var(--primary);
    overflow: hidden;
    min-height: auto;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(84, 185, 205, 0.3);
    background: var(--primary);
    border-color: var(--primary);
}

.card:hover .card__icon {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: none;
}

.card:hover .card__icon svg {
    color: var(--white);
}

.card:hover .card__title {
    color: var(--white);
}

.card:hover .card__text {
    color: rgba(255, 255, 255, 0.9);
}


.card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    margin-bottom: 14px;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(84, 185, 205, 0.3);
    transition: all 0.35s ease;
}

.card__icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 2;
    transition: color 0.35s ease;
}

.card__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    transition: color 0.35s ease;
}

.card__text {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
    transition: color 0.35s ease;
}

/* PHOTO GALLERY CAROUSEL */
.gallery {
    width: 100%;
    overflow: hidden;
    background: #1e3a47;
    padding: 0;
    margin: 0;
}

.gallery__track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: max-content;
    gap: 0;
    animation: galleryScroll 120s linear infinite;
}

.gallery__item {
    flex: 0 0 400px;
    width: 400px;
    height: 300px;
    object-fit: cover;
    border: none;
    display: block;
    margin: 0;
    padding: 0;
}

@keyframes galleryScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover for better UX */
.gallery:hover .gallery__track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .gallery__item {
        flex: 0 0 280px;
        width: 280px;
        height: 210px;
    }
}

/* FOOTER */
.footer {
    background: var(--footer);
    padding: 60px 0 30px;
    color: var(--white);
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 0.7fr;
    gap: 40px;
    align-items: center;
}

.footer__logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    display: block;
}

.footer__heading {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer__contacts-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
}

.footer__contact-item svg,
.footer__contact-item .contact-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.footer__map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.footer__action-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__action-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer__action-btn:hover {
    transform: translateY(-2px);
}

.footer__action-icon-circle {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer__action-icon-circle svg,
.footer__action-icon-circle i {
    width: 24px;
    height: 24px;
}

.footer__action-btn--uber {
    background: #000000;
    color: var(--white);
}

.footer__action-btn--uber .footer__action-icon-circle svg {
    color: #000000;
}

.footer__action-btn--route {
    background: #54b9cd;
    color: var(--white);
}

.footer__action-btn--route .footer__action-icon-circle {
    color: #54b9cd;
}

.footer__action-btn--app {
    background: var(--white);
    color: #333;
}

.footer__action-btn--app .footer__action-icon-circle {
    background: transparent;
}

.footer__bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.footer__copyright {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero__image {
        width: 48%;
    }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        min-height: auto;
        padding-bottom: 0;
        background: #6dc8d9;
        animation: none;
        overflow: hidden;
    }

    .hero::before,
    .hero::after {
        display: none;
    }

    .hero__container {
        flex-direction: column;
        padding: 0;
    }

    .hero__content {
        padding: 50px 24px 20px;
        max-width: 100%;
        text-align: center;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__action-buttons {
        max-width: 100%;
        justify-items: center;
    }

    .hero__logo {
        height: 80px;
    }

    .hero__image {
        position: relative;
        width: 100%;
        max-width: 670px;
        margin: 0 auto -200px auto;
        left: auto;
        bottom: 0;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__container {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: left !important;
    }

    .footer__column--contacts {
        display: flex;
        flex-direction: column;
        align-items: flex-start !important;
        padding: 0;
    }

    .footer__contact-item {
        justify-content: flex-start !important;
        text-align: left !important;
    }

    .footer__contacts-list {
        align-items: flex-start !important;
    }

    .footer__heading {
        text-align: left !important;
        width: 100%;
    }

    .footer__action-list {
        align-items: center;
    }

    .footer__action-btn {
        width: 100%;
        max-width: 300px;
    }

    .footer__bottom {
        text-align: center;
    }

    .footer__left {
        text-align: center;
    }

    .footer__contacts {
        align-items: center;
    }

    .footer__buttons {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero__content {
        padding: 40px 24px 10px;
    }

    .hero__title {
        font-size: 1.8rem;
    }

    .hero__logo {
        height: 65px;
        margin-bottom: 24px;
    }

    .hero__highlight {
        font-size: 0.9em;
        padding: 3px 12px;
    }

    .hero__subtitle {
        font-size: 1.1rem;
    }

    .hero__tagline {
        font-size: 1.3rem;
        padding: 12px 20px;
        margin-bottom: 16px;
    }

    .hero__action-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .action-btn {
        padding: 20px 12px;
    }

    .action-btn__icon {
        width: 42px;
        height: 42px;
    }

    .action-btn__icon svg {
        width: 22px;
        height: 22px;
    }

    .action-btn__text {
        font-size: 0.75rem;
    }


    .services {
        padding: 50px 0;
    }

    .services__container {
        padding: 0 20px;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .card {
        padding: 32px 22px 28px;
        border-radius: 16px;
    }

    .card__icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        margin-bottom: 18px;
    }

    .card__icon svg {
        width: 22px;
        height: 22px;
    }

    .photo-section {
        height: 350px;
    }

    .photo-section__container {
        padding: 0 24px;
    }

    .photo-section__title {
        font-size: 1.5rem;
    }

    .footer {
        padding: 50px 0 25px;
    }

    .footer__container {
        padding: 0 24px;
    }

    .footer__action-list {
        flex-direction: column;
    }

    .footer__action-btn {
        justify-content: flex-start;
    }
}

/* MOBILE BOTTOM NAV STYLES MOVED TO TOP */

/* WHATSAPP FLUTUANTE */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: #fff;
    fill: #fff;
}